Duplicated from Demosthene-OR/api-avr23-cds-translation
942c2cc 5afe693 942c2cc 5afe693 942c2cc 5afe693 942c2cc
1
2
3
4
5
6
7
8
9
10
11
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World!"} @app.get("/test") def read_root(): return {"Hello": "Test!"}