mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
21 lines
257 B
Lua
21 lines
257 B
Lua
--
|
|
-- (C) 2021 - ntop.org
|
|
--
|
|
|
|
local driver = {}
|
|
function driver:new(options)
|
|
local obj = {}
|
|
|
|
setmetatable(obj, self)
|
|
self.__index = self
|
|
|
|
return obj
|
|
end
|
|
|
|
function driver:topk(ifid, what_k, filter)
|
|
local res = {}
|
|
|
|
return res
|
|
end
|
|
|
|
return driver
|