view blog/src/private/tools/test.luan @ 739:f8a7cc1fd3f6

remove Io.my_ips() not needed
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 06 Jul 2016 17:47:12 -0600
parents ca169567ce07
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"
	Db.close()
end