10 lines
201 B
Go
10 lines
201 B
Go
//go:build !unix
|
|
|
|
package main
|
|
|
|
import "os"
|
|
|
|
// reloadSignals is empty off unix: there is no SIGHUP, so reloads happen only
|
|
// through the file watcher.
|
|
func reloadSignals() []os.Signal { return nil }
|