diff --git a/app/api/v1/auth.py b/app/api/v1/auth.py index 1cf1c5a..24d99dc 100644 --- a/app/api/v1/auth.py +++ b/app/api/v1/auth.py @@ -13,6 +13,7 @@ def wechat_login(json_data): try: result = rpc.admin.wechat_login(json_data['code']) except Exception as e: + # TODO 返回 apiflask 的 json 格式的 error raise e return result @@ -24,5 +25,6 @@ def refresh_token(query_data): try: result = rpc.admin.refresh_token(query_data['refresh_token']) except Exception as e: + # TODO 返回 apiflask 的 json 格式的 error raise e return result \ No newline at end of file