Skip to content

Commit e924be5

Browse files
committed
Update to Angular 19
1 parent 7ef6adc commit e924be5

9 files changed

Lines changed: 3559 additions & 2100 deletions

File tree

cmd/engarde-server/main.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package main
22

33
import (
4-
"io/ioutil"
54
"net"
65
"os"
76
"strconv"
@@ -79,7 +78,7 @@ func main() {
7978
return
8079
}
8180

82-
yamlFile, err := ioutil.ReadFile(configName)
81+
yamlFile, err := os.ReadFile(configName)
8382
handleErr(err, "Reading config file "+configName+" failed")
8483
err = yaml.Unmarshal(yamlFile, &genconfig)
8584
handleErr(err, "Parsing config file failed")

0 commit comments

Comments
 (0)