timetable-extension #1

Open
fred.boniface wants to merge 144 commits from timetable-extension into main
1 changed files with 1 additions and 2 deletions
Showing only changes of commit 57244c6971 - Show all commits

View File

@ -3,7 +3,6 @@ package helpers
import ( import (
"errors" "errors"
"fmt" "fmt"
"io/ioutil"
"os" "os"
) )
@ -74,7 +73,7 @@ func LoadConfig() (*Configuration, error) {
continue continue
} }
if data, err := ioutil.ReadFile(param.ConfFilePath); err == nil { if data, err := os.ReadFile(param.ConfFilePath); err == nil {
config.setConfigValue(key, string(data)) config.setConfigValue(key, string(data))
continue continue
} }