Globally reduce copyright headers
[project/luci.git] / applications / luci-app-diag-core / luasrc / controller / luci_diag.lua
1 -- Copyright 2009 Daniel Dickinson
2 -- Licensed to the public under the Apache License 2.0.
3
4 module("luci.controller.luci_diag", package.seeall)
5
6 function index()
7         local e
8
9         e = entry({"admin", "network", "diag_config"}, template("diag/network_config_index") , _("Configure Diagnostics"), 120)
10         e.index = true
11         e.dependent = true
12
13         e = entry({"mini", "diag"}, template("diag/index"), _("Diagnostics"), 120)
14         e.index = true
15         e.dependent = true
16 end