mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 09:38:39 +08:00
11 lines
279 B
Python
11 lines
279 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 Metrics(RestClient):
|
|
|
|
def get_metrics():
|
|
pass
|
|
|