summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-omcproxy/luasrc/controller/omcproxy.lua
blob: 6842a20971d2795ef14ba9fa8dd38ecccf225f33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- Copyright 2019 Shun Li <riverscn@gmail.com>
-- This is free software, licensed under the Apache License, Version 2.0

module("luci.controller.omcproxy", package.seeall)

function index()
	if not nixio.fs.access("/etc/config/omcproxy") then
		return
	end

	entry({"admin", "services", "omcproxy"}, view("omcproxy"), _("omcproxy")).dependent = true

end