mirror of
https://github.com/status-im/consul.git
synced 2025-01-12 14:55:02 +00:00
13 lines
153 B
Go
13 lines
153 B
Go
|
// +build !windows
|
||
|
|
||
|
package metrics
|
||
|
|
||
|
import (
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
// DefaultSignal is used with DefaultInmemSignal
|
||
|
DefaultSignal = syscall.SIGUSR1
|
||
|
)
|