webhook/signals_windows.go
Cameron Moore b82e15e836
Add service package
To help facilitate new features, begin moving the main webhook service
properties to a Service struct.
2020-12-27 23:48:27 -06:00

10 lines
197 B
Go

// +build windows
package main
import "github.com/adnanh/webhook/internal/service"
func setupSignals(_ *service.Service) {
// NOOP: Windows doesn't have signals equivalent to the Unix world.
}