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