mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 10:31:38 +08:00
12 lines
267 B
Lua
12 lines
267 B
Lua
-- Copyright 2019 X-WRT <dev@x-wrt.com>
|
|
|
|
module("luci.controller.xwan", package.seeall)
|
|
|
|
function index()
|
|
local page
|
|
|
|
page = entry({"admin", "network", "xwan"}, cbi("xwan/xwan"), _("Multi-WAN Dialing"))
|
|
page.leaf = true
|
|
page.acl_depends = { "luci-app-xwan" }
|
|
end
|