gitea/modules/structs/ai.go

14 lines
357 B
Go
Raw Normal View History

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"`
}