8 lines
79 B
Go
8 lines
79 B
Go
package keys
|
|
|
|
type Key interface {
|
|
Equals(Key) bool
|
|
|
|
Raw() ([]byte, error)
|
|
}
|