We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cb2e91 commit b102f87Copy full SHA for b102f87
repertory/repertory.go
@@ -28,11 +28,13 @@ import (
28
var Store = viper.New()
29
30
var (
31
+ // Type is the repertory file type
32
Type = "yaml"
33
+ // Name is the repertory file Name with Type as extension
34
Name = "repertory" + "." + Type
35
)
36
-// Configure configures the Read Only config storage
37
+// Init configures the Read Only config storage
38
func Init(configPath string) {
39
configFilePath := filepath.Join(configPath, Name)
40
Store.SetConfigName(Name)
0 commit comments