mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
12 lines
289 B
Python
12 lines
289 B
Python
from constants import *
|
|
from db import *
|
|
from models import *
|
|
from validation import *
|
|
from utils import *
|
|
from dependencies import *
|
|
from migration import run_migrations
|
|
from app import *
|
|
|
|
# Run database migrations on startup
|
|
print("Starting database migration check...")
|
|
run_migrations() |