7 lines
127 B
Go
7 lines
127 B
Go
package model
|
|
|
|
type CheckSumRepository interface {
|
|
Get(id string) (string, error)
|
|
SetData(newSums map[string]string) error
|
|
}
|