mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-29 12:51:49 +08:00
35 lines
705 B
Lua
35 lines
705 B
Lua
module("luci.controller.spectra", package.seeall)
|
|
|
|
function index()
|
|
entry({"admin", "spectra"},
|
|
firstchild(),
|
|
_("Spectra"),
|
|
41
|
|
)
|
|
|
|
entry({"admin", "spectra", "index"},
|
|
template("spectra/index"),
|
|
_("Home"),
|
|
2
|
|
).leaf = true
|
|
|
|
entry({"admin", "spectra", "media"},
|
|
template("spectra/media"),
|
|
_("Media"),
|
|
3
|
|
).leaf = true
|
|
|
|
entry({"admin", "spectra", "main"},
|
|
template("spectra/main"),
|
|
_("Music"),
|
|
4
|
|
).leaf = true
|
|
|
|
--[[
|
|
entry({"admin", "spectra", "filekit"},
|
|
template("spectra/filekit"),
|
|
_("Manager"),
|
|
5
|
|
).leaf = true
|
|
--]]
|
|
end |