from fastapi import FastAPI import config app = FastAPI( title=config.Main.title, ) @app.get( path='/', ) async def _(): return ';-)'