mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-09 03:52:04 +00:00
9 lines
116 B
Go
9 lines
116 B
Go
package constant
|
|
|
|
type TunnelStatus uint8
|
|
|
|
const (
|
|
TunnelSuspend TunnelStatus = iota
|
|
TunnelInner
|
|
TunnelRunning
|
|
)
|