Files
Backend/model/__init__.py
T

6 lines
174 B
Python
Raw Normal View History

2025-10-26 00:11:20 +03:00
from .robot import Robot
from .product import Product
from .inventory import InventoryRecord
from .user import User
__all__ = ['Robot', 'Product', 'InventoryRecord', 'User']