mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
12 lines
362 B
Lua
12 lines
362 B
Lua
--
|
|
-- (C) 2013-21 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/datasources/?.lua;" .. package.path
|
|
|
|
local packet_distro = require "interface.packet_distro"
|
|
local datasource = packet_distro:new()
|
|
|
|
datasource:rest_send_response()
|