feat(database/repositories/robot_repository.py): Added robot_repository

This commit is contained in:
Kita Trofimov
2025-10-26 14:09:21 +03:00
parent c1bab1b304
commit 2f6782ab9d
3 changed files with 136 additions and 2 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
from .user_repository import UserRepository
from .robot_repository import RobotRepository
__all__ = ['UserRepository']
__all__ = ['UserRepository', 'RobotRepository']