mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-03-01 17:00:48 +01:00
* docs: fix crud * docs: update README features * docs: add pagination/search example * docs: update zensical.toml * docs: cleanup * docs: update status to Stable + update description * docs: add example run commands
7 lines
107 B
Python
7 lines
107 B
Python
from fastapi import FastAPI
|
|
|
|
from .routes import router
|
|
|
|
app = FastAPI()
|
|
app.include_router(router=router)
|