mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 14:07:02 +09:00
13 lines
298 B
Go
13 lines
298 B
Go
package objecttree
|
|
|
|
type DescriptionParser interface {
|
|
ParseChange(*Change) ([]string, error)
|
|
}
|
|
|
|
var NoOpDescriptionParser = noopDescriptionParser{}
|
|
|
|
type noopDescriptionParser struct{}
|
|
|
|
func (n noopDescriptionParser) ParseChange(change *Change) ([]string, error) {
|
|
return []string{"DOC"}, nil
|
|
}
|