mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
10 lines
280 B
Lua
10 lines
280 B
Lua
module("luci.controller.shadowsocksr", package.seeall)
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/shadowsocksr") then
|
|
return
|
|
end
|
|
local page
|
|
page = entry({"admin", "services", "shadowsocksr"}, cbi("shadowsocksr"), _("ShadowsocksR Pro"))
|
|
page.dependent = true
|
|
end
|