0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-12 11:29:36 +03:00

Move from deprecated ioutil to os and io packages (#744)

This commit is contained in:
KallyDev
2021-09-29 02:49:34 +08:00
committed by GitHub
parent 1ef824c0b4
commit 4abf98c1be
17 changed files with 29 additions and 43 deletions

View File

@ -5,7 +5,6 @@ import (
"fmt"
"go/build"
"io"
"io/ioutil"
"net/http"
"os"
"os/exec"
@ -49,7 +48,7 @@ func GetRuntimeEnv(key string) (string, error) {
}
var data []byte
var runtimeEnv string
data, readErr := ioutil.ReadFile(file)
data, readErr := os.ReadFile(file)
if readErr != nil {
return "", readErr
}