tmpl-fastapi/app/paths/pages.py

21 lines
417 B
Python
Raw Normal View History

"""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,
)