remove hardcoded db location

+ move Db engine to module
This commit is contained in:
cwilvx
2024-07-05 05:00:28 +03:00
parent a76e91cf5a
commit 727dea748c
5 changed files with 21 additions and 20 deletions
+5
View File
@@ -0,0 +1,5 @@
from sqlalchemy import Engine
class DbEngine:
engine: Engine = None