chore: Fix fmt in #321

Replace all double spaces to tabs due to Go fmt proposal.
This commit is contained in:
H1JK
2023-01-07 12:24:28 +08:00
parent cd7134e309
commit fd48c6df8a
10 changed files with 75 additions and 71 deletions

View File

@ -162,10 +162,10 @@ func ConvertsV2Ray(buf []byte) ([]map[string]any, error) {
if jsonDc.Decode(&values) != nil {
continue
}
tempName,ok:=values["ps"].(string)
if !ok{
continue
}
tempName, ok := values["ps"].(string)
if !ok {
continue
}
name := uniqueName(names, tempName)
vmess := make(map[string]any, 20)