view http/src/luan/modules/http/serve.luan @ 498:ee55be414a34

Http.response is now mostly luan
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 18 May 2015 00:25:35 -0600
parents 2b9bc97f0439
children ca169567ce07
line wrap: on
line source

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

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

Server.serve(...)