diff src/luan/modules/http/serve.luan @ 775:1a68fc55a80c

simplify dir structure
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 26 Aug 2016 14:36:40 -0600
parents http/src/luan/modules/http/serve.luan@ca169567ce07
children 1aa6dd74f3fc
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/luan/modules/http/serve.luan	Fri Aug 26 14:36:40 2016 -0600
@@ -0,0 +1,9 @@
+local Io = require "luan:Io.luan"
+local Server = require "luan:http/Server.luan"
+
+if #{...} ~= 1 then
+	Io.stderr.write "usage: luan luan:http/serve dir-URI\n"
+	return
+end
+
+Server.serve(...)