1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-06-20 09:49:55 -04:00

Style: format code by gofumpt (#1022)

This commit is contained in:
Loyalsoldier
2021-05-20 05:28:52 +08:00
committed by GitHub
parent cf009a4ba2
commit 6f8979d017
87 changed files with 249 additions and 270 deletions

View File

@@ -55,7 +55,7 @@ func CopyFile(dst string, src string) error {
if err != nil {
return err
}
f, err := os.OpenFile(dst, os.O_CREATE|os.O_WRONLY, 0644)
f, err := os.OpenFile(dst, os.O_CREATE|os.O_WRONLY, 0o644)
if err != nil {
return err
}