-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
46 lines (37 loc) · 837 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
package scraper
import (
"fmt"
"os"
"path/filepath"
)
import "github.com/spf13/viper"
type config struct {
SearchResource []string
SearchKey string
OrderBy string
MaxResultPerCall int
ApiKey []string
}
const (
scraperConfigName string = "scraper-dev"
configDirectory string = "configs"
)
func GetConf() *config {
conf := &config{}
currDirectory, err := os.Getwd()
if err != nil {
fmt.Printf("error getting the current directory: %v", err)
}
configDirectory := filepath.Join(currDirectory, configDirectory)
viper.AddConfigPath(configDirectory)
viper.SetConfigName(scraperConfigName)
err = viper.ReadInConfig()
if err != nil {
fmt.Printf("%v", err)
}
err = viper.Unmarshal(conf)
if err != nil {
fmt.Printf("unable to decode into config struct, %v", err)
}
return conf
}