7 lines
147 B
Python
7 lines
147 B
Python
from fastapi import FastAPI
|
|
from backend.api.router import api_router
|
|
|
|
app = FastAPI(title="Notes")
|
|
|
|
# attach router
|
|
app.include_router(api_router) |