Globally reduce copyright headers
[project/luci.git] / applications / luci-app-openvpn / luasrc / controller / openvpn.lua
1 -- Copyright 2008 Steven Barth <steven@midlink.org>
2 -- Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
3 -- Licensed to the public under the Apache License 2.0.
4
5 module("luci.controller.openvpn", package.seeall)
6
7 function index()
8         entry( {"admin", "services", "openvpn"}, cbi("openvpn"), _("OpenVPN") )
9         entry( {"admin", "services", "openvpn", "basic"},    cbi("openvpn-basic"),    nil ).leaf = true
10         entry( {"admin", "services", "openvpn", "advanced"}, cbi("openvpn-advanced"), nil ).leaf = true
11 end