timetable-extension #1

Merged
fred.boniface merged 165 commits from timetable-extension into main 2025-06-18 21:06:04 +01:00
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
} }