5 lines
91 B
Go
5 lines
91 B
Go
package signing
|
|
|
|
type Repository interface {
|
|
StoreSignature(key *SignedPublicKey) error
|
|
}
|