diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2018-05-01 10:01:50 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-01 10:01:50 +0300 |
commit | dcfc4569c483f4218cf41b26ef0f4dfed0441c55 (patch) | |
tree | bfbef1d9b78cc26c52b201718ff3770283748c62 /applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua | |
parent | 27dd9d75f9e920150353db85cb126f2c83e89140 (diff) | |
parent | cc00b01c270ff48897a279cfc507e3dc758a2d30 (diff) |
Merge pull request #1690 from karlp/pagekite
luci-app-pagekitec: new package
Diffstat (limited to 'applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua')
-rw-r--r-- | applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua b/applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua new file mode 100644 index 0000000000..938356be64 --- /dev/null +++ b/applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua @@ -0,0 +1,8 @@ +-- Copyright 2018 Karl Palsson <karlp@tweak.net.au> +-- Licensed to the public under the Apache License 2.0. + +module("luci.controller.pagekitec", package.seeall) + +function index() + entry({"admin", "services", "pagekitec"}, cbi("pagekitec"), _("PageKite")) +end |