mirror of
https://github.com/kenzok8/openwrt-packages.git
synced 2025-05-01 15:11:46 +08:00
9 lines
336 B
Lua
9 lines
336 B
Lua
module("luci.controller.koolproxy",package.seeall)
|
|
function index()
|
|
if not nixio.fs.access("/etc/config/koolproxy")then
|
|
return
|
|
end
|
|
entry({"admin","services","koolproxy"},cbi("koolproxy/global"),_("KoolProxyR plus+"),1).dependent=true
|
|
entry({"admin","services","koolproxy","rss_rule"},cbi("koolproxy/rss_rule"), nil).leaf=true
|
|
end
|