> judge api 문서에 param 목록이 있는걸로 아는데 > `list[str]`말고 pydantic model로 type safe하게 관리하는건 어떨까요 > 이런식으루 > ```python > class JudgeQueryParams(BaseModel): > base64_encoded: bool = False > ... # 그 외 나올 수 있는 params > ``` > _Originally posted by @shp7724 in https://github.com/wafflestudio/wacruit-server/pull/4#discussion_r1255132030_