Add summary to the init command

This commit is contained in:
Miguel de la Cruz 2020-02-29 17:48:53 +01:00
parent b38a0ff437
commit 3534f55202
2 changed files with 5 additions and 1 deletions

View file

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