feat: initialize aivideo project
This commit is contained in:
51
backend/app/models/__init__.py
Normal file
51
backend/app/models/__init__.py
Normal file
@@ -0,0 +1,51 @@
|
||||
from app.models.base import Base
|
||||
from app.models.entities import (
|
||||
AdminUser,
|
||||
CallbackLog,
|
||||
GrowthRewardRule,
|
||||
InviteCode,
|
||||
InviteRelation,
|
||||
MediaAsset,
|
||||
OperationLog,
|
||||
PaymentChannel,
|
||||
PricingRule,
|
||||
ProviderAccount,
|
||||
ProviderModel,
|
||||
RechargeOrder,
|
||||
RechargePlan,
|
||||
RedeemCode,
|
||||
SystemConfig,
|
||||
User,
|
||||
VideoGenerationTask,
|
||||
VideoModel,
|
||||
VideoModelSupplierBinding,
|
||||
VideoTaskEvent,
|
||||
Wallet,
|
||||
WalletTransaction,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"Base",
|
||||
"AdminUser",
|
||||
"CallbackLog",
|
||||
"GrowthRewardRule",
|
||||
"InviteCode",
|
||||
"InviteRelation",
|
||||
"MediaAsset",
|
||||
"OperationLog",
|
||||
"PaymentChannel",
|
||||
"PricingRule",
|
||||
"ProviderAccount",
|
||||
"ProviderModel",
|
||||
"RechargeOrder",
|
||||
"RechargePlan",
|
||||
"RedeemCode",
|
||||
"SystemConfig",
|
||||
"User",
|
||||
"VideoGenerationTask",
|
||||
"VideoModel",
|
||||
"VideoModelSupplierBinding",
|
||||
"VideoTaskEvent",
|
||||
"Wallet",
|
||||
"WalletTransaction",
|
||||
]
|
||||
Reference in New Issue
Block a user