mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-29 01:41:51 +08:00
10 lines
286 B
Lua
10 lines
286 B
Lua
module("luci.controller.speedtest-web", package.seeall)
|
|
|
|
function index()
|
|
if not (luci.sys.call("pidof speedtest-web > /dev/null") == 0) then
|
|
return
|
|
end
|
|
|
|
entry({"admin", "network", "speedtest-web"}, template("speedtest-web/speedtest-web"), _("Speedtest Web"), 10).leaf = true
|
|
end
|