mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-04-15 22:26:25 +02:00
9 lines
266 B
Python
9 lines
266 B
Python
"""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"]
|