view src/luan/modules/http/serve.luan @ 1295:9dca1e912658

improve web shell
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 10 Jan 2019 21:42:11 -0700
parents 7fc83fd2a39a
children 307e76ccd0d6
line wrap: on
line source

local Io = require "luan:Io.luan"
local Server = require "luan:http/Server.luan"
local Logging = require "luan:logging/Logging.luan"


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

Logging.init()
Server.serve(...)