feat(model): Added correct data models

This commit is contained in:
Kita Trofimov
2025-10-26 00:11:20 +03:00
parent 7ccc9385e6
commit 79cac3d8cb
5 changed files with 55 additions and 14 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']