hackseoul / main.py
debisoft's picture
Hello3 Test
eb922b4
raw
history blame
192 Bytes
from fasthtml.common import *
from fasthtml_hf import setup_hf_backup
app,rt = fast_app()
@rt('/')
def get(): return Div(P('Hello World3!'), hx_get="/change")
setup_hf_backup(app)
serve()