luci/applications/luci-app-qos/luasrc/controller/qos.lua
Jo-Philipp Wich 7a3493b1f7 Globally reduce copyright headers
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
2015-01-16 23:38:38 +01:00

15 lines
346 B
Lua

-- Copyright 2008 Steven Barth <steven@midlink.org>
-- Licensed to the public under the Apache License 2.0.
module("luci.controller.qos", package.seeall)
function index()
if not nixio.fs.access("/etc/config/qos") then
return
end
local page
page = entry({"admin", "network", "qos"}, cbi("qos/qos"), _("QoS"))
page.dependent = true
end