This commit is contained in:
落心 2024-06-06 21:16:47 +08:00 committed by GitHub
commit 489b145d09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -58,11 +58,11 @@ func (m TunnelMode) MarshalYAML() (any, 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"
}