mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-07-14 16:56:25 +00:00
15 lines
217 B
Go
15 lines
217 B
Go
package proc
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
)
|
|
|
|
// Indirection so tests can stub these out if ever needed.
|
|
var (
|
|
signalNotify = signal.Notify
|
|
signalStop = signal.Stop
|
|
)
|
|
|
|
var _ = os.Stdout // anchor import for go vet
|