Skip to content

Commit f930a8b

Browse files
whummerclaude
andcommitted
restore utils package exports in __init__.py
The exports were accidentally removed, breaking imports for dependent packages like typedb. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent aa26a53 commit f930a8b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
from localstack_extensions.utils.docker import (
2+
ProxiedDockerContainerExtension,
3+
ProxyResource,
4+
)
5+
from localstack_extensions.utils.h2_proxy import (
6+
TcpForwarder,
7+
apply_http2_patches_for_grpc_support,
8+
get_headers_from_data_stream,
9+
get_headers_from_frames,
10+
get_frames_from_http2_stream,
11+
ProxyRequestMatcher,
12+
)
13+
14+
__all__ = [
15+
"ProxiedDockerContainerExtension",
16+
"ProxyResource",
17+
"TcpForwarder",
18+
"apply_http2_patches_for_grpc_support",
19+
"get_headers_from_data_stream",
20+
"get_headers_from_frames",
21+
"get_frames_from_http2_stream",
22+
"ProxyRequestMatcher",
23+
]

0 commit comments

Comments
 (0)