27 lines
600 B
Python
27 lines
600 B
Python
from sqlalchemy.orm import configure_mappers
|
|
|
|
from .project import *
|
|
from .module import *
|
|
from .board import *
|
|
from .status import *
|
|
from .attribute import *
|
|
from .card import *
|
|
from .auth import *
|
|
from .card import *
|
|
from .client import *
|
|
from .service import *
|
|
from .product import *
|
|
from .secondary import *
|
|
from .barcode import *
|
|
from .shipping_warehouse import *
|
|
from .marketplace import *
|
|
from .payroll import *
|
|
from .billing import *
|
|
from .marketplace_products import *
|
|
from .card_group import *
|
|
from .transaction import *
|
|
from .residues import *
|
|
from .shipping import *
|
|
|
|
configure_mappers()
|