From bc881df3617467dca052e4423f7060bc32bbdbf3 Mon Sep 17 00:00:00 2001 From: jonathan343 Date: Tue, 7 Oct 2025 16:13:49 -0400 Subject: [PATCH] Add aio package __init__.py and fix __all__ export --- awscrt/__init__.py | 2 +- awscrt/aio/__init__.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 awscrt/aio/__init__.py diff --git a/awscrt/__init__.py b/awscrt/__init__.py index ab3ee339f..f340fe98f 100644 --- a/awscrt/__init__.py +++ b/awscrt/__init__.py @@ -4,10 +4,10 @@ from weakref import WeakSet __all__ = [ + 'aio', 'auth', 'crypto', 'http', - 'aio.http', 'io', 'mqtt', 'mqtt5', diff --git a/awscrt/aio/__init__.py b/awscrt/aio/__init__.py new file mode 100644 index 000000000..fe248e942 --- /dev/null +++ b/awscrt/aio/__init__.py @@ -0,0 +1,4 @@ +# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. +# SPDX-License-Identifier: Apache-2.0. + +__all__ = ['http']