MVP
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
2025-07-27 22:17:28 +03:00
commit 5662d8877a
26 changed files with 1390 additions and 0 deletions

5
app/database/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from .database_engine import async_session_
from .models import Worker,Component, Order
__all__ = ["Worker", "Component", "Order", "async_session_"]