mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-04-25 04:38:04 +08:00
10 lines
116 B
Go
10 lines
116 B
Go
package constant
|
|
|
|
type TunnelStatus uint8
|
|
|
|
const (
|
|
TunnelSuspend TunnelStatus = iota
|
|
TunnelInner
|
|
TunnelRunning
|
|
)
|