mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-02 00:45:30 +08:00
11 lines
146 B
Python
11 lines
146 B
Python
|
|
class Reporter(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def report(self, result):
|
|
pass
|
|
|
|
|
|
class BaseResult(object):
|
|
pass |