quintodrome/domain/checksum.go

7 lines
128 B
Go
Raw Normal View History

2020-01-14 17:51:35 -09:00
package domain
type CheckSumRepository interface {
Get(id string) (string, error)
SetData(newSums map[string]string) error
}