pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
281 B
16 lines
281 B
from fastapi import FastAPI
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
openapi_url: str = "/openapi.json"
|
|
|
|
|
|
settings = Settings()
|
|
|
|
app = FastAPI(openapi_url=settings.openapi_url)
|
|
|
|
|
|
@app.get("/")
|
|
def root():
|
|
return {"message": "Hello World"}
|
|
|