From bffcd78f99aa4e92be14ec7fef7e6b23b99bf79e Mon Sep 17 00:00:00 2001 From: BryantHe Date: Thu, 26 Oct 2023 11:12:59 +0800 Subject: [PATCH] add: api for profiling 3 --- app/api/v1/api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/api/v1/api.py b/app/api/v1/api.py index b01592c..41f7a00 100644 --- a/app/api/v1/api.py +++ b/app/api/v1/api.py @@ -117,6 +117,7 @@ def get_image_presign_url(query_data): @api.doc(summary='此接口用于性能测试', description='此接口用于性能测试') def profiling(query_data): result = rpc.admin.identify(query_data['token']) + return result @api.get('/hello')