This commit is contained in:
Joseph Schorr 2017-06-29 09:43:04 +03:00
parent 1ddb09ac11
commit 27ed3bedcc
5 changed files with 9 additions and 7 deletions

View file

@ -3,6 +3,7 @@ from collections import namedtuple
from six import add_metaclass
class ScanToken(namedtuple('NextScanToken', ['min_id'])):
"""
ScanToken represents an opaque token that can be passed between runs of the security worker
@ -11,6 +12,7 @@ class ScanToken(namedtuple('NextScanToken', ['min_id'])):
the token in any way.
"""
@add_metaclass(ABCMeta)
class SecurityWorkerDataInterface(object):
"""