immortalwrt/package/jsda/luci-app-eqos/files/eqos-controller.lua
2019-07-02 18:06:49 +08:00

13 lines
235 B
Lua
Executable File

module("luci.controller.eqos", package.seeall)
function index()
if not nixio.fs.access("/etc/config/eqos") then
return
end
local page
page = entry({"admin", "network", "eqos"}, cbi("eqos"), "EQoS")
page.dependent = true
end