clash/constant/proxy.go
2018-07-15 22:23:20 +08:00

8 lines
154 B
Go

package constant
// ProxySignal is used to handle graceful shutdown of proxy
type ProxySignal struct {
Done chan<- struct{}
Closed <-chan struct{}
}