Change ticket from struct to map
This commit is contained in:
parent
089a61bd41
commit
ae4b6e6620
2 changed files with 8 additions and 12 deletions
|
@ -104,9 +104,9 @@ func parseGrepLine(line string) (*model.Ticket, error) {
|
|||
text := strings.Join(parts[2:], "")
|
||||
|
||||
return &model.Ticket{
|
||||
Filename: filename,
|
||||
LineNo: lineNo,
|
||||
Text: text,
|
||||
"filename": filename,
|
||||
"lineNo": lineNo,
|
||||
"text": text,
|
||||
}, nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue