mirror of
https://github.com/adnanh/webhook.git
synced 2025-05-10 07:34:54 +00:00
This commit drops webhook_windows.go in favor of simply pulling out the signal handling code to separate files.
7 lines
126 B
Go
7 lines
126 B
Go
// +build windows
|
|
|
|
package main
|
|
|
|
func setupSignals() {
|
|
// NOOP: Windows doesn't have signals equivalent to the Unix world.
|
|
}
|