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