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