Skip to content

Commit 05359a8

Browse files
committed
Add request adapter
1 parent 3432538 commit 05359a8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

msgraph/graph_request_adapter.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from kiota_abstractions.authentication import AuthenticationProvider
2+
from msgraph.core import BaseGraphRequestAdapter
3+
4+
5+
class GraphRequestAdapter(BaseGraphRequestAdapter):
6+
def __init__(self, auth_provider: AuthenticationProvider) -> None:
7+
super().__init__(auth_provider)
8+

0 commit comments

Comments
 (0)