Files
navidrome/domain/checksum.go
T
2020-01-14 21:51:35 -05:00

7 lines
128 B
Go

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