소스 검색

Doc config Load

Brendan Abolivier 6 년 전
부모
커밋
24358cae4f
로그인 계정: Brendan Abolivier <contact@brendanabolivier.com> GPG 키 ID: 8EF1500759F70623
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3
    0
      src/config/config.go

+ 3
- 0
src/config/config.go 파일 보기

@@ -46,6 +46,9 @@ type WebhookSettings struct {
46 46
 	Secret    string `yaml:"secret"`
47 47
 }
48 48
 
49
+// Load opens a given configuration file and parses it into an instance of the
50
+// Config structure.
51
+// Returns an error if there was an issue whith reading or parsing the file.
49 52
 func Load(filename string) (cfg *Config, err error) {
50 53
 	rawCfg, err := ioutil.ReadFile(filename)
51 54
 	if err != nil {