Files
mold_cost_online_tool/src/app/models/__init__.py
T
2025-06-24 15:03:16 +02:00

7 lines
203 B
Python

from .. import db
from .user import User
from .quotation import Quotation
from .cost_factor import CostFactor, CostFactorHistory
__all__ = ['db', 'User', 'Quotation', 'CostFactor', 'CostFactorHistory']