Files
Solo_bot/database/models/__init__.py
T

63 lines
1.3 KiB
Python

from ._base import Base, DictLikeMixin
from .admin import Admin, Setting
from .audit import AuditEvent
from .coupons import Coupon, CouponUsage
from .gifts import Gift, GiftUsage
from .identity import Identity
from .keys import Key
from .notifications import Notification, ScheduledBroadcast
from .payments import Payment
from .referrals import Referral
from .servers import Server, ServerSpecialgroup, ServerSubgroup
from .tariffs import Tariff
from .users import BlockedUser, ManualBan, TemporaryData, TrackingSource, User
from .web import (
WebBlock,
WebCustomElementBuild,
WebErrorReport,
WebFlow,
WebFlowEvent,
WebNotification,
WebPage,
WebPageVariant,
WebPageVariantBlock,
WebPushSubscription,
WebTheme,
)
__all__ = [
"Base",
"DictLikeMixin",
"Identity",
"User",
"ManualBan",
"TemporaryData",
"BlockedUser",
"TrackingSource",
"Key",
"Tariff",
"Server",
"ServerSubgroup",
"ServerSpecialgroup",
"Payment",
"Coupon",
"CouponUsage",
"Referral",
"Notification",
"ScheduledBroadcast",
"Gift",
"GiftUsage",
"AuditEvent",
"Admin",
"Setting",
"WebPage",
"WebTheme",
"WebBlock",
"WebPageVariant",
"WebPageVariantBlock",
"WebPushSubscription",
"WebNotification",
"WebFlow",
]