diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-01 02:15:40 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-01 02:17:06 +0200 |
commit | c875d40e631f83507b602807480be96dae05fc85 (patch) | |
tree | a81b0909eda009acb395d936d1e2bf09e03cff3a /bug/person.go | |
parent | 2f88c28c59ce0480e64dfba6d820dc6f7589a6cf (diff) | |
download | git-bug-c875d40e631f83507b602807480be96dae05fc85.tar.gz |
termui: add a view to display a bug
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 6a70fa9e..5c9dcc4c 100644 --- a/bug/person.go +++ b/bug/person.go @@ -6,8 +6,8 @@ import ( ) type Person struct { - Name string `json:"name"` - Email string `json:"email"` + Name string + Email string } // GetUser will query the repository for user detail and build the corresponding Person |