mirror of
https://github.com/adnanh/webhook.git
synced 2025-10-04 05:31:03 +00:00
To help facilitate new features, begin moving the main webhook service properties to a Service struct.
9 lines
197 B
Go
9 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.
|
|
}
|