1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-02-03 13:11:49 +02:00

Merge pull request #357 from manuelbcd/fix-example-create

Fixed examples/create response output
This commit is contained in:
Benji Vesterby 2021-03-03 18:21:51 -05:00 committed by GitHub
commit c77a7ee32e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,5 +59,5 @@ func main() {
panic(err)
}
fmt.Printf("%s: %+v\n", issue.Key, issue.Fields.Summary)
fmt.Printf("%s: %+v\n", issue.Key, issue.Self)
}