gitea-issue/giteaClient/createIssueProxy.go

17 lines
358 B
Go
Raw Normal View History

2019-12-04 17:04:06 +00:00
package giteaClient
type GetCreateIssueProxy struct {
Title string `json:"title"`
Body string `json:"body"`
Assignee string `json:"assignee"`
Labels []int64 `json:"labels"`
Closed bool `json:"closed"`
}
type PostCreateIssueProxy struct {
Title string `json:"title"`
Body string `json:"body"`
Labels []int64 `json:"labels"`
}