seperared json func.

master
simonkellet 2 years ago
parent 388d0a259d
commit e94125f510
  1. 18
      json.go

@ -0,0 +1,18 @@
package main
import (
"encoding/json"
"fmt"
"os"
)
func loadJson(file string) (WeatherAPI, error) {
var config WeatherAPI
configFile, err := os.Open(file)
if err != nil {
fmt.Println(err.Error())
}
jsonParser := json.NewDecoder(configFile)
jsonParser.Decode(&config)
return config, err
}
Loading…
Cancel
Save