initial commit

This commit is contained in:
2026-06-25 21:29:21 +00:00
commit 0d0a7456de
2738 changed files with 542622 additions and 0 deletions
@@ -0,0 +1,17 @@
"""Top-level package for sniffio."""
__all__ = [
"current_async_library",
"AsyncLibraryNotFoundError",
"current_async_library_cvar",
"thread_local",
]
from ._version import __version__
from ._impl import (
current_async_library,
AsyncLibraryNotFoundError,
current_async_library_cvar,
thread_local,
)