6 lines
124 B
Python
6 lines
124 B
Python
|
from zope.interface import Interface
|
||
|
|
||
|
|
||
|
class IBlobScorer(Interface):
|
||
|
def score_blob(self, blob, blob_info):
|
||
|
pass
|