de827e114d
* feat: PR 리뷰 ai 정적 분석 기능 추가 * fix: CreateAiPullComment의 반환값을 *AiPullComment로 변경 * fix: review_test 모킹 타입 오류 수정 * fix: ai interface server config 파일 설정 추가 및 ai interface server 요청 방식 변경
14 lines
357 B
Go
14 lines
357 B
Go
package structs
|
|
|
|
type CreateAiPullCommentForm struct {
|
|
Branch string `json:"branch"`
|
|
FileContents *[]PathContentMap `json:"file_contents"`
|
|
RepoID string `json:"repo_id"`
|
|
PullID string `json:"pull_id"`
|
|
}
|
|
|
|
type PathContentMap struct {
|
|
TreePath string `json:"file_path"`
|
|
Content string `json:"code"`
|
|
}
|