mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-05-07 07:22:43 +08:00
9 lines
187 B
Python
9 lines
187 B
Python
from fastapi import FastAPI
|
|
from .routers import note
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
app = FastAPI(title="BiliNote")
|
|
app.include_router(note.router, prefix="/api")
|
|
return app
|