8 lines
181 B
Go
8 lines
181 B
Go
package truststores
|
|
|
|
func init() {
|
|
// interface compliance test
|
|
var testDirTrustStore ExtendedTrustStore
|
|
testDirTrustStore, _ = NewDirTrustStore("/tmp")
|
|
_ = testDirTrustStore
|
|
}
|