"""Main FastAPI paths""" from fastapi import Request, Response from . import paths from . import respond class MainPaths(paths.Paths): """Main FastAPI app paths, inherits paths.Paths""" def add_paths(self) -> None: @self.app.get('/') def index(req: Request) -> Response: return respond.with_tmpl( 'index.html', request=req, )