def api_private_measurement_count_total():
url = urljoin(current_app.config['CENTRIFUGATION_BASE_URL'], 'count-total.json')
resp = requests.get(url)
return current_app.response_class(
resp.text,
mimetype=current_app.config['JSONIFY_MIMETYPE']
)
评论列表
文章目录