mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
15 lines
265 B
Python
15 lines
265 B
Python
|
|
class IndexFileHandler(object):
|
|
|
|
@staticmethod
|
|
def Create(filename, type):
|
|
# type means: csv, parquet
|
|
pass
|
|
|
|
@staticmethod
|
|
def Read(filename, type):
|
|
pass
|
|
|
|
@staticmethod
|
|
def Append(filename, type, record):
|
|
pass |