46cb2c1
1
2
3
4
5
6
7
8
9
10
11
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()