feat(core): initialize project structure, postgres schema and docker setup

This commit is contained in:
mamad
2026-08-27 19:53:30 +03:30
commit 4e6b3eca6f
15 changed files with 701 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
from db.database import init_db, get_db_connection
from db.models import SourceChannel, TargetChannel, Post, Setting
from db.repository import Repository
__all__ = ["init_db", "get_db_connection", "SourceChannel", "TargetChannel", "Post", "Setting", "Repository"]