pssecret-server/src/rectes/main.py

9 lines
108 B
Python
Raw Normal View History

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