Remove __pycache__ from repo

This commit is contained in:
d3m0k1d
2025-11-23 15:26:41 +03:00
parent e1b13d6557
commit fa982725e1
11 changed files with 48 additions and 8 deletions

9
backend/app/init_db.py Normal file
View File

@@ -0,0 +1,9 @@
from app.db_engine import init_db
from app.models.posts import Post
if __name__ == "__main__":
import asyncio
asyncio.run(init_db())