Mercurial Hosting > luan
view examples/blog/src/private/tools/test.luan @ 1148:49fb4e83484f
webserver - change headers to lower case
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 04 Feb 2018 17:11:06 -0700 |
parents | e2eb55d86bb2 |
children |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local do_file = Luan.do_file local try = Luan.try local Io = require "luan:Io.luan" local print = Io.print local Http = require "luan:http/Http.luan" return function() Io.stdout = Http.response.text_writer() Http.response.content_type = "text/plain" try { function() do_file "site:/lib/test.luan" end; catch = function(e) print() print("error:",e) end; } local Db = require "site:/lib/Db.luan" Db.close() end