diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-01-12 03:29:05 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-01-12 03:29:05 +0000 |
commit | 05fe5fb8ffc714ff8b996c0f31dd830193688290 (patch) | |
tree | bfce549f988aef0bdcb472daa3017e554f5a71e7 /plugins | |
parent | ea643d3c907ab9787b2e16961cc03c6ddf58e19e (diff) | |
download | prosody-05fe5fb8ffc714ff8b996c0f31dd830193688290.tar.gz prosody-05fe5fb8ffc714ff8b996c0f31dd830193688290.zip |
mod_httpserver: Add require 'net.httpserver'
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_httpserver.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_httpserver.lua b/plugins/mod_httpserver.lua index 02a9fd78..2bcdab43 100644 --- a/plugins/mod_httpserver.lua +++ b/plugins/mod_httpserver.lua @@ -1,4 +1,6 @@ +local httpserver = require "net.httpserver"; + local open = io.open; local t_concat = table.concat; |