mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-19 00:36:38 +00: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{}
|
|
}
|