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