mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 10:31:38 +08:00
14 lines
260 B
Lua
Executable File
14 lines
260 B
Lua
Executable File
|
|
module("luci.controller.simman", package.seeall)
|
|
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/simman") then
|
|
return
|
|
end
|
|
|
|
local page
|
|
|
|
page = entry({"admin", "services", "simman"}, cbi("simman"), _(translate("Simman")))
|
|
page.dependent = true
|
|
end
|