This commit drops webhook_windows.go in favor of simply pulling out the signal handling code to separate files.
8 lines
126 B
Go
8 lines
126 B
Go
// +build windows
|
|
|
|
package main
|
|
|
|
func setupSignals() {
|
|
// NOOP: Windows doesn't have signals equivalent to the Unix world.
|
|
}
|