Gitiles
Code Review
Sign In
gerrit-dev.monogon.dev
/
monogon
/
a6d8b39959427e4f7e922f7dc095687e07a0caaa
/
.
/
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)
}