|
|
|
@ -4,7 +4,6 @@ import (
@@ -4,7 +4,6 @@ import (
|
|
|
|
|
"encoding/json" |
|
|
|
|
"fmt" |
|
|
|
|
"io" |
|
|
|
|
"io/ioutil" |
|
|
|
|
"net/http" |
|
|
|
|
"net/url" |
|
|
|
|
"os" |
|
|
|
@ -16,7 +15,7 @@ import (
@@ -16,7 +15,7 @@ import (
|
|
|
|
|
|
|
|
|
|
func loadConfig() { |
|
|
|
|
var c Config |
|
|
|
|
confFile, _ := ioutil.ReadFile(configFile) |
|
|
|
|
confFile, _ := os.ReadFile(configFile) |
|
|
|
|
err := json.Unmarshal([]byte(confFile), &c) |
|
|
|
|
if err != nil { |
|
|
|
|
log.LogErrorType(err) |
|
|
|
@ -52,7 +51,7 @@ func saveConfig() {
@@ -52,7 +51,7 @@ func saveConfig() {
|
|
|
|
|
if err != nil { |
|
|
|
|
log.LogErrorType(err) |
|
|
|
|
} |
|
|
|
|
err = ioutil.WriteFile(configFile, file, 0600) |
|
|
|
|
err = os.WriteFile(configFile, file, 0600) |
|
|
|
|
if err != nil { |
|
|
|
|
log.LogErrorType(err) |
|
|
|
|
} |
|
|
|
|