mirror of
https://github.com/hashicorp/vault.git
synced 2026-04-29 18:19:24 -04:00
8 lines
152 B
Go
8 lines
152 B
Go
// +build windows
|
|
|
|
package command
|
|
|
|
// MakeSigUSR2Ch does nothing useful on Windows.
|
|
func MakeSigUSR2Ch() chan struct{} {
|
|
return make(chan struct{})
|
|
}
|