mirror of https://github.com/milvus-io/milvus.git
19 lines
365 B
Python
19 lines
365 B
Python
|
from decorest import GET, POST, DELETE
|
||
|
from decorest import HttpStatus, RestClient
|
||
|
from decorest import accept, body, content, endpoint, form
|
||
|
from decorest import header, multipart, on, query, stream, timeout
|
||
|
|
||
|
class Import(RestClient):
|
||
|
|
||
|
def list_import_tasks():
|
||
|
pass
|
||
|
|
||
|
def exec_import():
|
||
|
pass
|
||
|
|
||
|
def get_import_state():
|
||
|
pass
|
||
|
|
||
|
|
||
|
|