All checks were successful
continuous-integration/drone/push Build is passing
- 新增 platform_apps 表和 App 模型 - 新增应用管理页面 /apps - 应用配置页面添加"生成链接"功能 - 支持一键生成带签名的访问 URL
18 lines
372 B
Python
18 lines
372 B
Python
"""数据模型"""
|
|
from .tenant import Tenant, Subscription, Config
|
|
from .tenant_app import TenantApp
|
|
from .app import App
|
|
from .stats import AICallEvent, TenantUsageDaily
|
|
from .logs import PlatformLog
|
|
|
|
__all__ = [
|
|
"Tenant",
|
|
"Subscription",
|
|
"Config",
|
|
"TenantApp",
|
|
"App",
|
|
"AICallEvent",
|
|
"TenantUsageDaily",
|
|
"PlatformLog"
|
|
]
|