Just_UNIARC / src /utils /init_db.py
UNI12345's picture
feat: sync backend codebase to space
feeaf83
Raw
History Blame Contribute Delete
241 Bytes
from src.database.models import init_db
import logging
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
logging.info("Initializing Database...")
init_db()
logging.info("Database initialized successfully.")