fix telegram
This commit is contained in:
23
deploy-package-20260223-151231/shared/auth/__init__.py
Normal file
23
deploy-package-20260223-151231/shared/auth/__init__.py
Normal file
@@ -0,0 +1,23 @@
|
||||
"""
|
||||
ROA2WEB Shared Authentication Module
|
||||
|
||||
This module provides JWT-based authentication functionality that can be shared
|
||||
across all ROA2WEB microservices.
|
||||
|
||||
Components:
|
||||
- jwt_handler: JWT token creation, validation, and refresh
|
||||
- auth_service: Oracle database authentication integration
|
||||
- middleware: FastAPI middleware for token validation
|
||||
- dependencies: FastAPI dependencies for protected routes
|
||||
- models: Pydantic models for authentication data
|
||||
- routes: Template authentication routes for FastAPI apps
|
||||
"""
|
||||
|
||||
from .jwt_handler import jwt_handler, JWTHandler, TokenData, TokenResponse
|
||||
|
||||
__all__ = [
|
||||
'jwt_handler',
|
||||
'JWTHandler',
|
||||
'TokenData',
|
||||
'TokenResponse'
|
||||
]
|
||||
Reference in New Issue
Block a user