Browse Source

Enable loading TOML & YAML by confdir (#120)

pull/215/head
秋のかえで 4 years ago committed by GitHub
parent
commit
9d4038427d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      main/run.go

7
main/run.go

@ -8,6 +8,7 @@ import (
"os/signal"
"path"
"path/filepath"
"regexp"
"runtime"
"runtime/debug"
"strings"
@ -120,7 +121,11 @@ func readConfDir(dirPath string) {
log.Fatalln(err)
}
for _, f := range confs {
if strings.HasSuffix(f.Name(), ".json") {
matched, err := regexp.MatchString(`^.+\.(json|toml|yaml|yml)$`, f.Name())
if err != nil {
log.Fatalln(err)
}
if matched {
configFiles.Set(path.Join(dirPath, f.Name()))
}
}

Loading…
Cancel
Save