hackseoul / main.py
debisoft's picture
Update main.py
97494ea verified
raw
history blame
191 Bytes
from fasthtml.common import *
from fasthtml_hf import setup_hf_backup
app,rt = fast_app()
@rt('/')
def get(): return Div(P('Hello World2!'), hx_get="/change")
setup_hf_backup(app)
serve()