Globally reduce copyright headers
[project/luci.git] / applications / luci-app-qos / luasrc / controller / qos.lua
1 -- Copyright 2008 Steven Barth <steven@midlink.org>
2 -- Licensed to the public under the Apache License 2.0.
3
4 module("luci.controller.qos", package.seeall)
5
6 function index()
7         if not nixio.fs.access("/etc/config/qos") then
8                 return
9         end
10         
11         local page
12
13         page = entry({"admin", "network", "qos"}, cbi("qos/qos"), _("QoS"))
14         page.dependent = true
15 end