File size: 198 Bytes
b34752d
3826e2b
 
 
 
 
 
 
 
b34752d
1
2
3
4
5
6
7
8
9
10
from fasthtml_hf import setup_hf_backup, run_uv
from fasthtml.common import *

app,rt = fast_app()

@rt('/')
def get(): return Div(P('Hello World!'), hx_get="/change")

setup_hf_backup(app)
run_uv()