dubswayAgenticV2 / app /run_once.py
peace2024's picture
Upload 23 files
6d01d5b
# run_once.py
from app.database import Base, engine
from app import models
async def init():
async with engine.begin() as conn:
await conn.run_sync(Base.metadata.create_all)
import asyncio
asyncio.run(init())