view src/luan/modules/http/serve.luan @ 1256:c147e2e877e3

allow subclassing of HttpServicer
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 19 Sep 2018 20:15:16 -0600
parents 7f4a12fb7716
children 7fc83fd2a39a
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 dir\n"
	return
end

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