blob: cd2ab0827e065b3b846f4aa087027c5c63344674 [file] [log] [blame]
Tim Windelschmidt6d33a432025-02-04 14:34:25 +01001// Copyright The Monogon Project Authors.
2// SPDX-License-Identifier: Apache-2.0
3
Lorenz Brunfba5da02022-12-15 11:20:47 +00004//go:build !linux
5
6package nvme
7
8import (
9 "fmt"
10 "runtime"
11)
12
13func (d *Device) RawCommand(cmd *Command) error {
14 return fmt.Errorf("NVMe command interface unimplemented for %v", runtime.GOOS)
15}