hackseoul / main.py
debisoft's picture
deploy at 2024-08-24 07:10:00.661397
46cb2c1 verified
raw
history blame
190 Bytes
from fasthtml.common import *
from fasthtml_hf import setup_hf_backup
app,rt = fast_app()
@rt('/')
def get(): return Div(P('Hello World!'), hx_get="/change")
setup_hf_backup(app)
serve()