applepach_recognition_space / main_hello_world.py
Kortikov Mikhail
main
8c04035
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}