diff options
Diffstat (limited to 'bug/person.go')
-rw-r--r-- | bug/person.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bug/person.go b/bug/person.go index 9afaac0d..d9f1108b 100644 --- a/bug/person.go +++ b/bug/person.go @@ -8,8 +8,8 @@ import ( ) type Person struct { - Name string - Email string + Name string `json:"name"` + Email string `json:"email"` } // GetUser will query the repository for user detail and build the corresponding Person |