Files
vault/command/agent/winsvc/service.go
2024-01-02 10:35:40 -08:00

13 lines
302 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package winsvc
var chanGraceExit = make(chan int)
// ShutdownChannel returns a channel that sends a message that a shutdown
// signal has been received for the service.
func ShutdownChannel() <-chan int {
return chanGraceExit
}