mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
16 lines
No EOL
357 B
Lua
16 lines
No EOL
357 B
Lua
--
|
|
-- (C) 2020 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
|
|
local widget_utils = require("widget_utils")
|
|
local json = require "dkjson"
|
|
|
|
sendHTTPContentTypeHeader('application/json')
|
|
|
|
local widgets = widget_utils.get_all_widgets()
|
|
print(json.encode(widgets)) |