mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-08-04 23:54:09 +00:00
12 lines
246 B
Python
12 lines
246 B
Python
from fastapi import FastAPI
|
|
|
|
from fastapi_toolsets.exceptions import init_exceptions_handlers
|
|
|
|
from .db import db
|
|
from .routes import router
|
|
|
|
app = FastAPI()
|
|
db.install(app=app)
|
|
init_exceptions_handlers(app=app)
|
|
app.include_router(router=router)
|