Initial flows dbms api skeleton

This commit is contained in:
Simone Mainardi 2018-07-18 17:24:25 +02:00
parent 4cbe45a948
commit 1c27af9b90
5 changed files with 123 additions and 0 deletions

View file

@ -0,0 +1,21 @@
--
-- (C) 2018 - 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