mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-17 12:19:07 +02:00
10 lines
117 B
Go
10 lines
117 B
Go
//go:build !linux
|
|
|
|
package tpm
|
|
|
|
import "io"
|
|
|
|
func open() (io.ReadWriteCloser, error) {
|
|
return nil, ErrUnsupported
|
|
}
|