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.

25 lines
529 B

  1. package main
  2. import (
  3. "encoding/json"
  4. "io/ioutil"
  5. )
  6. type Config struct {
  7. User string `json:"user"`
  8. Pass string `json:"pass"`
  9. Host string `json:"host"`
  10. Port string `json:"port"`
  11. GenesisTx string `json:"genesisTx"`
  12. GenesisBlock string `json:"genesisBlock"`
  13. StartFromBlock int64 `json:"startFromBlock"`
  14. }
  15. var config Config
  16. func readConfig(path string) {
  17. file, err := ioutil.ReadFile(path)
  18. check(err)
  19. content := string(file)
  20. json.Unmarshal([]byte(content), &config)
  21. }