Adds implementation for init command

This commit is contained in:
Miguel de la Cruz 2020-02-29 13:33:03 +01:00
parent a289ed12ad
commit 412d82269b
4 changed files with 40 additions and 11 deletions

View file

@ -2,5 +2,5 @@ package model
type Campaign struct {
Epic string `json:"epic"`
Tickets []*Ticket `json:"tickets"`
Tickets []*Ticket `json:"tickets,omitempty"`
}