7 lines
154 B
Go
7 lines
154 B
Go
package constant
|
|
|
|
// ProxySignal is used to handle graceful shutdown of proxy
|
|
type ProxySignal struct {
|
|
Done chan<- struct{}
|
|
Closed <-chan struct{}
|
|
}
|