mirror of
https://github.com/status-im/consul.git
synced 2025-02-08 03:43:34 +00:00
11 lines
187 B
Go
11 lines
187 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package service_os
|
|
|
|
var chanGraceExit = make(chan int)
|
|
|
|
func Shutdown_Channel() <-chan int {
|
|
return chanGraceExit
|
|
}
|