Skip to content

Commit 8aff6bb

Browse files
authored
Add aio package __init__.py and fix __all__ export (#688)
1 parent 795f3fd commit 8aff6bb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

awscrt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
from weakref import WeakSet
55

66
__all__ = [
7+
'aio',
78
'auth',
89
'crypto',
910
'http',
10-
'aio.http',
1111
'io',
1212
'mqtt',
1313
'mqtt5',

awscrt/aio/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0.
3+
4+
__all__ = ['http']

0 commit comments

Comments
 (0)