Skip to content

Commit 2bc45d1

Browse files
gavin-aguiarGavin Aguiarvrdmr
authored
Added e2e tests for dependency isolation (#919)
* Added e2e tests for dependency isolation Co-authored-by: Gavin Aguiar <[email protected]> Co-authored-by: Varad Meru <[email protected]>
1 parent a83ac06 commit 2bc45d1

File tree

28 files changed

+2838
-123
lines changed

28 files changed

+2838
-123
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
3+
4+
from ._abc import Context, Out
5+
from ._http import HttpRequest
6+
from ._http import HttpResponse
7+
from .meta import get_binding_registry
8+
9+
# Import binding implementations to register them
10+
from . import http # NoQA
11+
12+
13+
__all__ = (
14+
# Functions
15+
'get_binding_registry',
16+
17+
# Generics.
18+
'Context',
19+
'Out',
20+
21+
# Binding rich types, sorted alphabetically.
22+
'HttpRequest',
23+
'HttpResponse',
24+
)
25+
26+
__version__ = '9.9.9'

0 commit comments

Comments
 (0)