hackseoul / main.py
debisoft's picture
Add mapid
9db24e3
raw
history blame
117 Bytes
from fasthtml.common import *
app = FastHTML()
rt = app.route
@rt('/')
def get():
return Div(id='mapid')
serve()