feat:初版
This commit is contained in:
20
apps/api/app/services/__init__.py
Normal file
20
apps/api/app/services/__init__.py
Normal file
@@ -0,0 +1,20 @@
|
||||
from .cache import cache_service, CacheService
|
||||
from .rate_limit import rate_limit_service, RateLimitService
|
||||
from .llm import llm_service, LLMService
|
||||
from .stats import stats_service, StatsService
|
||||
from .auth import hash_password, verify_password, create_token, verify_token
|
||||
|
||||
__all__ = [
|
||||
"cache_service",
|
||||
"CacheService",
|
||||
"rate_limit_service",
|
||||
"RateLimitService",
|
||||
"llm_service",
|
||||
"LLMService",
|
||||
"stats_service",
|
||||
"StatsService",
|
||||
"hash_password",
|
||||
"verify_password",
|
||||
"create_token",
|
||||
"verify_token",
|
||||
]
|
||||
Reference in New Issue
Block a user