mirror of https://github.com/milvus-io/milvus.git
17 lines
351 B
Python
17 lines
351 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 Alias(RestClient):
|
|
|
|
def drop_alias():
|
|
pass
|
|
|
|
def alter_alias():
|
|
pass
|
|
|
|
def create_alias():
|
|
pass
|
|
|