Files
mold_cost_online_tool/app/models/__init__.py
T

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']