API / app.py
licorne2lc's picture
Add application file
4686dc7
Raw
History Blame Contribute Delete
267 Bytes
import uvicorn
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def index():
message = "Hello world! This `/` is the most simple and default endpoint. If you want to learn more, check out documentation of the api at `/docs`"
return message