To help facilitate new features, begin moving the main webhook service properties to a Service struct.
10 lines
197 B
Go
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.
|
|
}
|