mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
12 lines
369 B
Lua
12 lines
369 B
Lua
--
|
|
-- (C) 2013-24 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/pools/?.lua;" .. package.path
|
|
|
|
local host_pools = require "host_pools"
|
|
local pools_rest_utils = require "pools_rest_utils"
|
|
|
|
pools_rest_utils.get_pool_by_member(host_pools)
|