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