feat: add security module

This commit is contained in:
2026-03-04 11:02:54 -05:00
parent e1f96ad7fe
commit 59231bd5d0
11 changed files with 1813 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
"""Built-in authentication source implementations."""
from .header import APIKeyHeaderAuth
from .bearer import BearerTokenAuth
from .cookie import CookieAuth
from .multi import MultiAuth
__all__ = ["APIKeyHeaderAuth", "BearerTokenAuth", "CookieAuth", "MultiAuth"]