summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorDaniel Langesten <daniel.langest@gmail.com>2015-03-10 12:17:09 +0100
committerDaniel Langesten <daniel.langest@gmail.com>2015-03-10 12:17:09 +0100
commit27c2831269972ef48c9926ee5f79650cdc8c27e5 (patch)
tree3361c4aa36fab532c08132c95587bfdcd01d3f3b /config.go
parent08ba2e4238fdc518afda1191fb56bc457af3b2b6 (diff)
added support for reading config from file
Diffstat (limited to 'config.go')
-rw-r--r--config.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/config.go b/config.go
new file mode 100644
index 0000000..2646c23
--- /dev/null
+++ b/config.go
@@ -0,0 +1,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)
+
+}