Compare commits

...

2 Commits

Author SHA1 Message Date
落心
700e731f80
Merge 63f7182f2b into 792f16265e 2024-11-09 01:55:57 +08:00
落心
63f7182f2b
resolveMetadata 方法中的配置对齐
Signed-off-by: 落心 <33619903+Luoxin@users.noreply.github.com>
2024-03-13 11:58:43 +08:00

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"
}