6 lines
109 B
Python
6 lines
109 B
Python
|
from fastapi import FastAPI
|
||
|
from app.api.endpoints import router
|
||
|
|
||
|
app = FastAPI()
|
||
|
|
||
|
app.include_router(router)
|