Globally reduce copyright headers
[project/luci.git] / applications / luci-app-udpxy / luasrc / controller / udpxy.lua
1 -- Copyright 2014 Álvaro Fernández Rojas <noltari@gmail.com>
2 -- Licensed to the public under the Apache License 2.0.
3
4 module("luci.controller.udpxy", package.seeall)
5
6 function index()
7         if not nixio.fs.access("/etc/config/udpxy") then
8                 return
9         end
10
11         local page = entry({"admin", "services", "udpxy"}, cbi("udpxy"), _("udpxy"))
12         page.dependent = true
13
14 end