mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
13 lines
439 B
Lua
13 lines
439 B
Lua
--
|
|
-- (C) 2013-20 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/recipients/?.lua;" .. package.path
|
|
local rest_utils = require "rest_utils"
|
|
local recipients = require "recipients"
|
|
local recipients_instance = recipients:create()
|
|
|
|
recipients_instance:cleanup()
|
|
rest_utils.answer(rest_utils.consts.success.ok)
|