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.
15 lines
267 B
15 lines
267 B
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.api_route("/api_route")
|
|
def non_operation():
|
|
return {"message": "Hello World"}
|
|
|
|
|
|
def non_decorated_route():
|
|
return {"message": "Hello World"}
|
|
|
|
|
|
app.add_api_route("/non_decorated_route", non_decorated_route)
|
|
|