op-packages/luci-app-simman/luasrc/controller/simman.lua
github-actions[bot] 263d407c11 🎄 Sync 2026-04-23 03:14:31
2026-04-23 03:14:31 +08:00

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