mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-21 15:36:51 +00:00
15 lines
287 B
Go
15 lines
287 B
Go
//go:build !(darwin && cgo)
|
|
|
|
package certificate
|
|
|
|
//nolint:unused // referenced by Store.platform; populated only in store_darwin.go.
|
|
type storePlatform struct{}
|
|
|
|
func (s *Store) updatePlatformLocked(_ []byte) error {
|
|
return nil
|
|
}
|
|
|
|
func (s *Store) closePlatform() error {
|
|
return nil
|
|
}
|