blob: 747a33d036598ef97b193ae31a270f01acbdb1ce [file] [log] [blame]
Lorenz Brunfba5da02022-12-15 11:20:47 +00001//go:build !linux
2
3package nvme
4
5import (
6 "fmt"
7 "runtime"
8)
9
10func (d *Device) RawCommand(cmd *Command) error {
11 return fmt.Errorf("NVMe command interface unimplemented for %v", runtime.GOOS)
12}