Files
netbird/client/internal/tpm/open_other.go
T
2026-09-16 23:00:44 +02:00

10 lines
117 B
Go

//go:build !linux
package tpm
import "io"
func open() (io.ReadWriteCloser, error) {
return nil, ErrUnsupported
}