You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
354 B

  1. package main
  2. import (
  3. "encoding/json"
  4. "io/ioutil"
  5. )
  6. //Config reads the config
  7. type Config struct {
  8. Port string `json:"port"`
  9. WebServerPort string `json:"webserverport"`
  10. }
  11. var config Config
  12. func readConfig(path string) {
  13. file, err := ioutil.ReadFile(path)
  14. check(err)
  15. content := string(file)
  16. json.Unmarshal([]byte(content), &config)
  17. }