open-vault/command/commands_windows.go

9 lines
153 B
Go
Raw Normal View History

//go:build windows
package command
// MakeSigUSR2Ch does nothing useful on Windows.
func MakeSigUSR2Ch() chan struct{} {
return make(chan struct{})
}