view http/src/luan/modules/http/test.luan @ 494:2b9bc97f0439

change luan:web to luan:http
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 15 May 2015 17:43:13 -0600
parents http/src/luan/modules/web/test.luan@1d082a0812e0
children 9218f9cf45d3
line wrap: on
line source

local Io = require "luan:Io"
local Server = require "luan:http/Server"

if #{...} ~= 2 then
	Io.stderr.write "usage: luan luan:http/serve dir-URI test-URI\n"
	return
end

local dir, test = ...
Server.init(dir)
require(test)