You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
302 B
11 lines
302 B
#dc
|
|
from utils.request import api_request
|
|
|
|
|
|
def get_dataint_query_api():
|
|
|
|
return api_request(method='get', url=f'/dataint/dataquery', is_headers=True)
|
|
|
|
def get_dataint_vecset_list_api(page_obj: dict):
|
|
|
|
return api_request(method='post', url='/dataint/vecset/get', is_headers=True, json=page_obj)
|