10 lines
202 B
Go
10 lines
202 B
Go
//go:build !linux
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func blockDeviceSize(path string) (int64, error) {
|
|
return 0, fmt.Errorf("block device size detection is only implemented on linux (got path %s)", path)
|
|
}
|