Hello, world

This commit is contained in:
Ivan Golikov 2022-06-12 13:47:07 +03:00
parent edf9c2fb23
commit 7c66d7934e
2 changed files with 8 additions and 0 deletions

0
src/rectes/__init__.py Normal file
View file

8
src/rectes/main.py Normal file
View file

@ -0,0 +1,8 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}