Adds the grep parsing and ticket creation
This commit is contained in:
parent
dfd8aeffa7
commit
18953f9372
3 changed files with 72 additions and 10 deletions
|
@ -1,5 +1,6 @@
|
|||
package model
|
||||
|
||||
type Campaign struct {
|
||||
Epic string `json:"epic"`
|
||||
Epic string `json:"epic"`
|
||||
Tickets []*Ticket `json:"tickets"`
|
||||
}
|
||||
|
|
|
@ -2,6 +2,6 @@ package model
|
|||
|
||||
type Ticket struct {
|
||||
Filename string `json:"filename"`
|
||||
Line int `json:"line"`
|
||||
LineNo int `json:"line_no"`
|
||||
Text string `json:"text"` // needed??
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue