14 lines
189 B
Go
14 lines
189 B
Go
//go:build windows
|
|
|
|
package diagnose
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func OSChecks(ctx context.Context) {
|
|
ctx, span := StartSpan(ctx, "Check Operating System")
|
|
defer span.End()
|
|
diskUsage(ctx)
|
|
}
|