13 lines
203 B
Go
13 lines
203 B
Go
//go:build !(darwin && cgo)
|
|
|
|
package certificate
|
|
|
|
type storePlatform struct{}
|
|
|
|
func (s *Store) updatePlatformLocked(_ []byte) error {
|
|
return nil
|
|
}
|
|
|
|
func (s *Store) closePlatform() error {
|
|
return nil
|
|
}
|