1
0
vault-redux/vault/diagnose/os_windows.go
2024-01-02 10:36:20 -08:00

17 lines
260 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build windows
package diagnose
import (
"context"
)
func OSChecks(ctx context.Context) {
ctx, span := StartSpan(ctx, "Check Operating System")
defer span.End()
diskUsage(ctx)
}