navidrome/cmd/signaller_nounix.go

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

15 lines
242 B
Go
Raw Normal View History

2024-04-29 00:32:28 +02: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
func startSignaler(ctx context.Context) func() error {
return func() error {
return nil
}
}