b795643146
* Fix the third dumb thing in this file * ...
11 lines
181 B
Go
11 lines
181 B
Go
// +build openbsd,arm
|
|
|
|
package diagnose
|
|
|
|
import "context"
|
|
|
|
func diskUsage(ctx context.Context) error {
|
|
SpotSkipped(ctx, "disk usage", "unsupported on this platform")
|
|
return nil
|
|
}
|