view src/luan/modules/http/test.luan @ 1218:a50803fde972

http/tools cleanup
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 20 Mar 2018 16:24:59 -0600
parents 1a68fc55a80c
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)