open-vault/vault/diagnose/os_windows.go
Hridoy Roy d3034f2851
Diagnose Language Pass (#11909)
* 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
2021-07-11 15:44:19 -07:00

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)
}