Skip to content

Commit 360630b

Browse files
author
Gavin Aguiar
committed
Added e2e tests for dependency isolation
1 parent f6f66c7 commit 360630b

File tree

27 files changed

+2708
-11
lines changed

27 files changed

+2708
-11
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)