Gitiles
Code Review
Sign In
gerrit-dev.monogon.dev
/
monogon
/
5832cd92957a6933c0fd644496d957ea2d8ef36d
/
.
/
metropolis
/
pkg
/
nvme
/
cmd_unsupported.go
blob: 747a33d036598ef97b193ae31a270f01acbdb1ce [
file
] [
log
] [
blame
]
//go:build !linux
package nvme
import (
"fmt"
"runtime"
)
func (d *Device) RawCommand(cmd *Command) error {
return fmt.Errorf("NVMe command interface unimplemented for %v", runtime.GOOS)
}