pssecret-server/src/rectes/main.py

9 lines
108 B
Python
Raw Normal View History

2022-06-12 10:47:07 +00:00
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}