mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-30 20:50:02 +00:00
6 lines
170 B
Python
6 lines
170 B
Python
from fastapi import FastAPI
|
|
from fastapi_pagination import add_pagination
|
|
|
|
|
|
api = FastAPI(swagger_ui_parameters={"persistAuthorization": True})
|
|
add_pagination(api)
|