mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-01 19:47:37 +03:00
14 lines
243 B
Go
14 lines
243 B
Go
//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 startSignaller(ctx context.Context) func() error {
|
|
return func() error {
|
|
return nil
|
|
}
|
|
}
|