from fastapi import FastAPI from fastapi.responses import HTMLResponse from learn_sql_model.api.hero import hero_router from learn_sql_model.api.user import user_router from learn_sql_model.api.websocket import web_socket_router app = FastAPI() app.include_router(hero_router) app.include_router(user_router) app.include_router(web_socket_router) html = """ Learn SQL Model

Learn SQL Model

Join the game with the following command.

pipx run --spec git+https://github.com/WaylonWalker/learn-sql-model lsm game run

You can watch player data at watch

""" @app.get("/") async def get(): return HTMLResponse(html)