Adds flags to the add subcommand

This commit is contained in:
Miguel de la Cruz 2020-02-29 01:20:46 +01:00
parent 0a8b3a0e59
commit 527ed8f502
2 changed files with 30 additions and 5 deletions

7
model/ticket.go Normal file
View file

@ -0,0 +1,7 @@
package model
type Ticket struct {
Filename string `json:"filename"`
Line int `json:"line"`
Text string `json:"text"` // needed??
}