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 (
"errors"
"fmt"
"io/ioutil"
"os"
)
@ -74,7 +73,7 @@ func LoadConfig() (*Configuration, error) {
continue
}
if data, err := ioutil.ReadFile(param.ConfFilePath); err == nil {
if data, err := os.ReadFile(param.ConfFilePath); err == nil {
config.setConfigValue(key, string(data))
continue
}