quintodrome/model/checksum.go

7 lines
127 B
Go
Raw Normal View History

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