d3034f2851
* save * save * save * first round of the diagnose language pass * capitalization * first round of feedback * fix bug in advise * a few more nouns to verbs
14 lines
188 B
Go
14 lines
188 B
Go
// +build windows
|
|
|
|
package diagnose
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func OSChecks(ctx context.Context) {
|
|
ctx, span := StartSpan(ctx, "Check Operating System")
|
|
defer span.End()
|
|
diskUsage(ctx)
|
|
}
|