| Tim Windelschmidt | 6d33a43 | 2025-02-04 14:34:25 +0100 | [diff] [blame] | 1 | // Copyright The Monogon Project Authors. |
| 2 | // SPDX-License-Identifier: Apache-2.0 | ||||
| 3 | |||||
| Lorenz Brun | fba5da0 | 2022-12-15 11:20:47 +0000 | [diff] [blame] | 4 | //go:build !linux |
| 5 | |||||
| 6 | package nvme | ||||
| 7 | |||||
| 8 | import ( | ||||
| 9 | "fmt" | ||||
| 10 | "runtime" | ||||
| 11 | ) | ||||
| 12 | |||||
| 13 | func (d *Device) RawCommand(cmd *Command) error { | ||||
| 14 | return fmt.Errorf("NVMe command interface unimplemented for %v", runtime.GOOS) | ||||
| 15 | } | ||||