You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			346 B
		
	
	
	
		
			Python
		
	
			
		
		
	
	
			15 lines
		
	
	
		
			346 B
		
	
	
	
		
			Python
		
	
# Copyright (c) Microsoft Corporation. All rights reserved.
 | 
						|
# Licensed under the MIT License. See LICENSE in the project root
 | 
						|
# for license information.
 | 
						|
 | 
						|
from __future__ import annotations
 | 
						|
import typing
 | 
						|
 | 
						|
if typing.TYPE_CHECKING:
 | 
						|
    __all__: list[str]
 | 
						|
 | 
						|
__all__ = []
 | 
						|
 | 
						|
access_token = None
 | 
						|
"""Access token used to authenticate with this adapter."""
 |