summaryrefslogtreecommitdiff
path: root/config.go
blob: 2646c236b66f422d81b036d3fb6b93ce65516acb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package main

import (
	"encoding/json"
	"fmt"
	"io/ioutil"
)

type Config struct {
	Volumes  []VolumeInfo `json:volumes`
	Interval string       `json:interval`
}

type VolumeInfo struct {
	Size  string `json:size`
	Lower int    `json:lower`
	Upper int    `json:upper`
}

func main() {
	readConfig()
}

func readConfig() {
	content, err := ioutil.ReadFile("config.json")
	if err != nil {
		fmt.Print("Error:", err)
	}
	var conf Config
	err = json.Unmarshal(content, &conf)
	if err != nil {
		fmt.Print("Error:", err)
	}
	fmt.Println(conf)

}