9 lines
249 B
Python
9 lines
249 B
Python
from fastapi import FastAPI
|
|
# from app.infrastructure.fastapi import routes
|
|
from app.infrastructure.database.database import init_db
|
|
|
|
app = FastAPI()
|
|
|
|
init_db() # Инициализация базы данных
|
|
|
|
# app.include_router(routes.router) |