gopp/mod/post.tengo

22 lines
286 B
Text

fmt := import("fmt")
paths := import("paths")
htmExt := func(c){
c.pp.print(`
</body></html>
`)
}
exts := {
".htm": htmExt,
".html": htmExt
}
export func(c){
url_path := c.http.request.url.path
ext := paths.ext(url_path)
cl := exts[ext]
if !is_undefined(cl) {
cl(c)
}
}