Private
Public Access
forked from FOSS/AutoShop-Djimbo-Simple
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
from .db_category import CategoryModel, Categoryx
|
|
from .db_item import ItemModel, Itemx
|
|
from .db_payments import PaymentsModel, Paymentsx
|
|
from .db_position import PositionModel, Positionx
|
|
from .db_purchases import PurchaseModel, Purchasesx
|
|
from .db_refill import RefillModel, Refillx
|
|
from .db_settings import SettingsModel, Settingsx
|
|
from .db_users import UserModel, UsersRepository, Userx
|
|
|
|
from .db_referral import (
|
|
ReferralModel,
|
|
ReferralTransactionModel,
|
|
ReferralWithdrawalModel,
|
|
Referralx,
|
|
ReferralTransactionx,
|
|
ReferralWithdrawalx,
|
|
)
|
|
|
|
from .entities import (
|
|
Category,
|
|
Item,
|
|
Payments,
|
|
Position,
|
|
Purchase,
|
|
Refill,
|
|
Settings,
|
|
User,
|
|
Referral,
|
|
ReferralTransaction,
|
|
ReferralWithdrawal,
|
|
)
|
|
|
|
ModelCategory = Category
|
|
ModelItem = Item
|
|
ModelPayments = Payments
|
|
ModelPosition = Position
|
|
ModelPurchases = Purchase
|
|
ModelRefill = Refill
|
|
ModelSettings = Settings
|
|
ModelUser = User
|
|
ModelUsers = User
|
|
SettingsRepository = Settingsx
|
|
|
|
ModelReferral = Referral
|
|
ModelReferralTransaction = ReferralTransaction
|
|
ModelReferralWithdrawal = ReferralWithdrawal
|