This commit is contained in:
落心 2025-12-18 10:41:52 +08:00 committed by GitHub
commit 9d9202dd4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,11 +38,11 @@ func (m TunnelMode) MarshalText() ([]byte, error) {
func (m TunnelMode) String() string { func (m TunnelMode) String() string {
switch m { switch m {
case Global: case Global:
return "global" return "GLOBAL"
case Rule: case Rule:
return "rule" return "RULE"
case Direct: case Direct:
return "direct" return "DIRECT"
default: default:
return "Unknown" return "Unknown"
} }