-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
65 lines (53 loc) · 1021 Bytes
/
config.go
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package gouse
import (
"encoding/json"
"os"
"github.com/kelseyhightower/envconfig"
"github.com/pelletier/go-toml"
"gopkg.in/yaml.v2"
)
func ReadJSON[T any](path string, configuration *T) error {
file, err := os.Open(path)
if err != nil {
return err
}
defer func() {
if err := file.Close(); err != nil {
panic(err)
}
}()
decoder := json.NewDecoder(file)
return decoder.Decode(configuration)
}
func ReadTOML[T any](path string, configuration *T) error {
data, err := toml.LoadFile(path)
if err != nil {
return err
}
err = data.Unmarshal(configuration)
if err != nil {
return err
}
return nil
}
func ReadYAML[T any](path string, configuration *T) error {
f, err := os.Open(path)
if err != nil {
return err
}
defer func() {
if err := f.Close(); err != nil {
panic(err)
}
}()
decoder := yaml.NewDecoder(f)
err = decoder.Decode(configuration)
if err != nil {
return err
}
err = envconfig.Process("", configuration)
if err != nil {
return err
}
return nil
}