1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Fix issues found by goimports

Signed-off-by: Chris Cummer <chriscummer@me.com>
This commit is contained in:
Chris Cummer
2020-05-06 23:00:03 -07:00
parent d45c02251d
commit b7165991c9
16 changed files with 42 additions and 37 deletions

View File

@@ -12,7 +12,7 @@ type Issue struct {
type IssueFields struct {
Summary string `json:"summary"`
IssueType *IssueType `json:"issuetype"`
IssueType *IssueType `json:"issuetype"`
IssueStatus *IssueStatus `json:"status"`
}
@@ -26,7 +26,7 @@ type IssueType struct {
}
type IssueStatus struct {
ISelf string `json:"self"`
IDescription string `json:"description"`
IName string `json:"name"`
ISelf string `json:"self"`
IDescription string `json:"description"`
IName string `json:"name"`
}