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