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