summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-udpxy/luasrc/controller/udpxy.lua
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-udpxy/luasrc/controller/udpxy.lua')
-rw-r--r--applications/luci-app-udpxy/luasrc/controller/udpxy.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/applications/luci-app-udpxy/luasrc/controller/udpxy.lua b/applications/luci-app-udpxy/luasrc/controller/udpxy.lua
deleted file mode 100644
index 36a40ddfc7..0000000000
--- a/applications/luci-app-udpxy/luasrc/controller/udpxy.lua
+++ /dev/null
@@ -1,14 +0,0 @@
--- Copyright 2014 Álvaro Fernández Rojas <noltari@gmail.com>
--- Licensed to the public under the Apache License 2.0.
-
-module("luci.controller.udpxy", package.seeall)
-
-function index()
- if not nixio.fs.access("/etc/config/udpxy") then
- return
- end
-
- local page = entry({"admin", "services", "udpxy"}, cbi("udpxy"), _("udpxy"))
- page.dependent = true
-
-end