sshfp-generator/statestore/interface.go

12 lines
278 B
Go

package statestore
type Repository interface {
GetModifyIndex(hostname string) (int, error)
SetModifyIndex(hostname string, index int) error
}
type Service interface {
CheckIfModified(hostname string, index int) (bool, error)
SaveState(hostname string, index int) error
}