mirror of
https://wget.la/https://github.com/leookun/cursor-byok
synced 2026-08-17 03:27:02 +08:00
16 lines
419 B
Go
16 lines
419 B
Go
//go:build !windows && !darwin
|
|
|
|
package cursor
|
|
|
|
import "fmt"
|
|
|
|
// EnsureCACertInstalled 非 Windows/macOS 平台的存根实现
|
|
func EnsureCACertInstalled(_ []byte, certPath string) error {
|
|
return fmt.Errorf("ensureCACertInstalled: 当前平台暂不支持,certPath=%s", certPath)
|
|
}
|
|
|
|
// EnsureLegacySharedCACertRemoved is a no-op on unsupported platforms.
|
|
func EnsureLegacySharedCACertRemoved() error {
|
|
return nil
|
|
}
|