Skip to content

Commit 89c6073

Browse files
authored
Merge pull request #14 from SynergyX-AI-Pattern/bug/#9_deploy_error
Bug/#9 deploy error
2 parents 6d01fd9 + 3aa2897 commit 89c6073

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

app/schemas/base_response.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,3 @@ class BaseResponse(BaseModel):
77
message: Optional[str] = Field(None, description="응답 메시지")
88
code: Optional[str] = Field(None, description="응답 코드")
99
data: Optional[Any] = Field(None, description="실제 데이터")
10-
11-
model_config = {
12-
"json_schema_extra": {
13-
"example": {
14-
"is_success": True,
15-
"code": "SUCCESS",
16-
"message": "종목 정보 조회 성공.",
17-
"data": {
18-
"id": 101,
19-
"symbol": "005930",
20-
"name": "삼성전자",
21-
"image_url": "https://images/005930.png"
22-
}
23-
}
24-
}
25-
}

0 commit comments

Comments
 (0)