Files
navidrome/model/checksum.go
T
2020-01-14 22:22:34 -05:00

7 lines
127 B
Go

package model
type CheckSumRepository interface {
Get(id string) (string, error)
SetData(newSums map[string]string) error
}