Simplified
This commit is contained in:
parent
32dd20a85b
commit
8f64abd176
@ -19,9 +19,9 @@ func NewJSONSourceFromFlagFunc(flag string) func(c *cli.Context) (InputSourceCon
|
|||||||
return func(context *cli.Context) (InputSourceContext, error) {
|
return func(context *cli.Context) (InputSourceContext, error) {
|
||||||
if context.IsSet(flag) {
|
if context.IsSet(flag) {
|
||||||
return NewJSONSourceFromFile(context.String(flag))
|
return NewJSONSourceFromFile(context.String(flag))
|
||||||
} else {
|
|
||||||
return defaultInputSource()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return defaultInputSource()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,9 +90,9 @@ func NewTomlSourceFromFlagFunc(flagFileName string) func(context *cli.Context) (
|
|||||||
if context.IsSet(flagFileName) {
|
if context.IsSet(flagFileName) {
|
||||||
filePath := context.String(flagFileName)
|
filePath := context.String(flagFileName)
|
||||||
return NewTomlSourceFromFile(filePath)
|
return NewTomlSourceFromFile(filePath)
|
||||||
} else {
|
|
||||||
return defaultInputSource()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return defaultInputSource()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,9 +36,9 @@ func NewYamlSourceFromFlagFunc(flagFileName string) func(context *cli.Context) (
|
|||||||
if context.IsSet(flagFileName) {
|
if context.IsSet(flagFileName) {
|
||||||
filePath := context.String(flagFileName)
|
filePath := context.String(flagFileName)
|
||||||
return NewYamlSourceFromFile(filePath)
|
return NewYamlSourceFromFile(filePath)
|
||||||
} else {
|
|
||||||
return defaultInputSource()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return defaultInputSource()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user