mirror of
https://github.com/hashicorp/vault.git
synced 2026-04-26 08:39:10 -04:00
8 lines
153 B
Go
8 lines
153 B
Go
//go:build windows
|
|
|
|
package command
|
|
|
|
// MakeSigUSR2Ch does nothing useful on Windows.
|
|
func MakeSigUSR2Ch() chan struct{} {
|
|
return make(chan struct{})
|
|
}
|