7 lines
124 B
Go
7 lines
124 B
Go
package signing
|
|
|
|
import "crypto/x509"
|
|
|
|
type Repository interface {
|
|
StoreCertificate(certificate *x509.Certificate) error
|
|
}
|