Mercurial Hosting > luan
view blog/src/private/tools/test.luan @ 619:cc3a68033179
fix hosting delete logging
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 03 Jan 2016 02:03:54 -0700 |
parents | e930f92d0f61 |
children | ca169567ce07 |
line wrap: on
line source
local Luan = require "luan:Luan" local do_file = Luan.do_file local try = Luan.try local Io = require "luan:Io" local print = Io.print local Http = require "luan:http/Http" 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" Db.close() end