mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-01 23:19:33 +08:00
13 lines
235 B
Lua
13 lines
235 B
Lua
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
|