mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-08 00:57:07 +08:00
12 lines
280 B
Lua
12 lines
280 B
Lua
module("luci.controller.mproxy", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/mproxy") then
|
|
return
|
|
end
|
|
local page
|
|
page = entry({"admin", "services", "mproxy"}, cbi("mproxy"), _("Mproxy Server"), 100)
|
|
page.i18n = "mproxy"
|
|
page.dependent = true
|
|
end
|