__init__.py 346 B

1234567891011121314
  1. # Copyright (c) Microsoft Corporation. All rights reserved.
  2. # Licensed under the MIT License. See LICENSE in the project root
  3. # for license information.
  4. from __future__ import annotations
  5. import typing
  6. if typing.TYPE_CHECKING:
  7. __all__: list[str]
  8. __all__ = []
  9. access_token = None
  10. """Access token used to authenticate with this adapter."""