vault/command/commands_windows.go
2026-05-11 04:50:47 +00:00

12 lines
225 B
Go

// Copyright IBM Corp. 2026, 2025
// 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{})
}