luci/applications/luci-app-https_dns_proxy/luasrc/controller/https_dns_proxy.lua
Stan Grishin 89110b1757 luci-app-https_dns_proxy: initial commit
Signed-off-by: Stan Grishin <stangri@melmac.net>
2018-09-02 18:49:54 -07:00

7 lines
248 B
Lua

module("luci.controller.https_dns_proxy", package.seeall)
function index()
if not nixio.fs.access("/etc/config/https_dns_proxy") then
return
end
entry({"admin", "services", "https_dns_proxy"}, cbi("https_dns_proxy"), _("HTTPS DNS Proxy"))
end