mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-22 16:31:28 +02:00
11 lines
236 B
Go
11 lines
236 B
Go
//go:build android || ios || freebsd || js
|
|
|
|
package system
|
|
|
|
import "context"
|
|
|
|
// detectDiskEncryption is a stub for unsupported platforms.
|
|
func detectDiskEncryption(_ context.Context) DiskEncryptionInfo {
|
|
return DiskEncryptionInfo{}
|
|
}
|