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.

22 lines
403 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. KeysDirectory string `json:"keysDirectory"`
  10. ServerIDSigner string `json:"serverIDsigner"`
  11. }
  12. var config Config
  13. func readConfig(path string) {
  14. file, err := ioutil.ReadFile(path)
  15. check(err)
  16. content := string(file)
  17. json.Unmarshal([]byte(content), &config)
  18. }