hy/site/app.hy
2013-03-10 10:30:03 -04:00

16 lines
302 B
Hy

; Copyright (c) Paul R. Tagliamonte <tag@pault.ag>, 2013 under the terms of
; hy.
(import-from flask
Flask render-template)
(def app (Flask "__main__")) ; long story, needed hack
(route "/" [] (render-template "index.html"))
(post-route "/test" [] (render-template "index.html"))