add interface for review app

This commit is contained in:
Yansong Zhang
2025-10-14 11:35:20 +08:00
parent 341ee17042
commit e54131e95b
2 changed files with 51 additions and 1 deletions

View File

@ -115,3 +115,8 @@ class InvokeRateLimitError(BaseHTTPException):
error_code = "rate_limit_error"
description = "Rate Limit Error"
code = 429
class NeedAddIdsError(BaseHTTPException):
error_code = "need_add_ids"
description = "Need to add ids."
code = 400