From da470993d13ce63087034db9b7e8ffbdf18e87a5 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sat, 14 Jul 2018 22:17:37 +0200 Subject: complete the storage/read process + tests (!) --- bug/operations/create.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bug/operations/create.go') diff --git a/bug/operations/create.go b/bug/operations/create.go index 1c34f85d..49b648a2 100644 --- a/bug/operations/create.go +++ b/bug/operations/create.go @@ -11,9 +11,9 @@ var _ bug.Operation = CreateOperation{} type CreateOperation struct { bug.OpBase - Title string `json:"t"` - Message string `json:"m"` - Author bug.Person `json:"a"` + Title string + Message string + Author bug.Person } func NewCreateOp(author bug.Person, title, message string) CreateOperation { -- cgit