mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
8 lines
154 B
Go
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{}
|
|
}
|