14 lines
285 B
Python
14 lines
285 B
Python
"""数据模型"""
|
|
from .tenant import Tenant, Subscription, Config
|
|
from .stats import AICallEvent, TenantUsageDaily
|
|
from .logs import PlatformLog
|
|
|
|
__all__ = [
|
|
"Tenant",
|
|
"Subscription",
|
|
"Config",
|
|
"AICallEvent",
|
|
"TenantUsageDaily",
|
|
"PlatformLog"
|
|
]
|