mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
15 lines
434 B
Lua
15 lines
434 B
Lua
--
|
|
-- (C) 2019-20 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/timeseries/?.lua;" .. package.path
|
|
local user_scripts = require "user_scripts"
|
|
|
|
-- ########################################################
|
|
|
|
user_scripts.runPeriodicScripts()
|
|
|
|
-- ########################################################
|
|
|