hackseoul / main.py
debisoft's picture
reset
6c1b1ab
raw
history blame
117 Bytes
from fasthtml.common import *
app = FastHTML()
rt = app.route
@rt('/')
def get():
return 'Hello World!!'
serve()