10 lines
305 B
Lua
10 lines
305 B
Lua
module("luci.controller.qmodem_mwan", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/qmodem_mwan") then
|
|
return
|
|
end
|
|
--mwan配置
|
|
entry({"admin", "network", "qmodem", "mwan_config"}, cbi("qmodem/mwan_config"), luci.i18n.translate("Mwan Config"), 21).leaf = true
|
|
end
|