7 lines
113 B
Python
7 lines
113 B
Python
from fastapi import FastAPI
|
|
from app.infrastructure.database.database import init_db
|
|
|
|
app = FastAPI()
|
|
|
|
init_db()
|