提供基本前后端骨架

This commit is contained in:
hisatri
2026-01-06 23:49:23 +08:00
parent 84d4ccc226
commit 06f8176e23
89 changed files with 19293 additions and 2 deletions

16
app/services/__init__.py Normal file
View File

@@ -0,0 +1,16 @@
"""业务服务层"""
from app.services.auth import AuthService
from app.services.oauth2 import OAuth2Service
from app.services.user import UserService
from app.services.balance import BalanceService
from app.services.redeem_code import RedeemCodeService
__all__ = [
"AuthService",
"OAuth2Service",
"UserService",
"BalanceService",
"RedeemCodeService",
]