mirror of
https://github.com/mickael-menu/zk
synced 2024-11-15 12:12:56 +00:00
19 lines
414 B
Go
19 lines
414 B
Go
|
package core
|
||
|
|
||
|
type noteContentParserMock struct {
|
||
|
results map[string]*NoteContent
|
||
|
}
|
||
|
|
||
|
func newNoteContentParserMock(results map[string]*NoteContent) *noteContentParserMock {
|
||
|
return ¬eContentParserMock{
|
||
|
results: results,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (p *noteContentParserMock) ParseNoteContent(content string) (*NoteContent, error) {
|
||
|
if note, ok := p.results[content]; ok {
|
||
|
return note, nil
|
||
|
}
|
||
|
return &NoteContent{}, nil
|
||
|
}
|