mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
10 lines
264 B
Lua
10 lines
264 B
Lua
module("luci.controller.gobinetmodem", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/gobinetmodem") then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "network", "gobinetmodem"}, cbi("gobinetmodem"), _("Gobinet Modem Server"), 80).dependent = false
|
|
end
|