blob: bcd1d2797786c8e9f4a2dee5e3b01fe6af5dd0d4 (
plain) (
blame)
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
|
package config
import (
"encoding/json"
"io/ioutil"
"log"
)
type Settings struct {
DBServer string `json:"db"`
WebServer string `json:"web"`
Username string `json:"username"`
DigestPassword string `json:"password"`
StaticDir string `json:"static_dir"`
}
var Config Settings
func Read(filename string) {
file, e := ioutil.ReadFile(filename)
if e != nil {
log.Fatal("Can not read config file\n", e)
}
e = json.Unmarshal(file, &Config)
if e != nil {
log.Fatal("Config read error\n", e)
}
}
|