This commit is contained in:
落心 2025-04-03 16:48:02 +08:00 committed by GitHub
commit 0327ef9225
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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