mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
11 lines
233 B
Lua
11 lines
233 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
|
||
|
end
|