quintodrome/cmd/signaller_nounix.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
243 B
Go
Raw Permalink Normal View History

2024-04-28 14:32:28 -08:00
//go:build windows || plan9
package cmd
import (
"context"
)
// Windows and Plan9 don't support SIGUSR1, so we don't need to start a signaler
2024-05-01 19:09:04 -08:00
func startSignaller(ctx context.Context) func() error {
2024-04-28 14:32:28 -08:00
return func() error {
return nil
}
}