mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-22 16:07:49 +08:00
12 lines
296 B
Lua
Executable File
12 lines
296 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 = entry({"admin", "network", "eqos"}, cbi("eqos"), _("EQOS"), 121)
|
|
page.dependent = true
|
|
page.acl_depends = { "luci-app-eqos" }
|
|
end
|