mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
20 lines
412 B
Python
20 lines
412 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 Credential(RestClient):
|
|
|
|
def delete_credential():
|
|
pass
|
|
|
|
def update_credential():
|
|
pass
|
|
|
|
def create_credential():
|
|
pass
|
|
|
|
def list_credentials():
|
|
pass
|