diff options
author | 2016-02-14 10:58:18 +0100 | |
---|---|---|
committer | 2016-02-14 10:58:18 +0100 | |
commit | ccae0382bb750c1deded19e05b34933a8303465e (patch) | |
tree | 1a2f0ae972163e6c1c76611b464d4257947c003e /plugins/weblit/init.lua | |
parent | 2db49088141b6238e92aecc4c073076a02c73065 (diff) |
Added plugins and boot.lua as startup script [Miodrag Milanovic]
Diffstat (limited to 'plugins/weblit/init.lua')
-rw-r--r-- | plugins/weblit/init.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/weblit/init.lua b/plugins/weblit/init.lua new file mode 100644 index 00000000000..f9224b7880c --- /dev/null +++ b/plugins/weblit/init.lua @@ -0,0 +1,8 @@ +local exports = {} +exports.app = require('weblit/app') +exports.autoHeaders = require('weblit/auto-headers') +exports.etagCache = require('weblit/etag-cache') +exports.logger = require('weblit/logger') +exports.static = require('weblit/static') +exports.websocket = require('weblit/websocket') +return exports |