Files
vault/command/commands_windows.go
2024-01-02 10:36:20 -08:00

12 lines
224 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build windows
package command
// MakeSigUSR2Ch does nothing useful on Windows.
func MakeSigUSR2Ch() chan struct{} {
return make(chan struct{})
}