any-sync/util/keys/key.go
2022-07-13 20:52:56 +02:00

8 lines
79 B
Go

package keys
type Key interface {
Equals(Key) bool
Raw() ([]byte, error)
}