Mercurial Hosting > luan
view src/luan/modules/http/test.luan @ 1241:2b5046cd7963
fix Thread safe()
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 21 Jun 2018 22:30:13 -0600 |
parents | a50803fde972 |
children | 7fc83fd2a39a |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local Io = require "luan:Io.luan" local Server = require "luan:http/Server.luan" local Logging = require "luan:logging/Logging.luan" if #{...} ~= 2 then Io.stderr.write "usage: luan luan:http/serve dir test-URI\n" return end local dir, test = ... Logging.init() Server.init_dir(dir) Luan.do_file(test)