feat(model): Added correct data models

This commit is contained in:
Kita Trofimov
2025-10-26 00:11:20 +03:00
committed by Sweetbread
parent 70041fa58e
commit e80c5645f1
5 changed files with 56 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
from .robot import Robot
from .product import Product
from .inventory import InventoryRecord
from .user import User
__all__ = ['Robot', 'Product', 'InventoryRecord', 'User']