chore: remove unused code in omi config

This commit is contained in:
Marin Salinas 2019-09-05 08:20:27 -05:00
parent 7d024b9725
commit 793b3f1990

View file

@ -25,15 +25,6 @@ type OMIConfig struct {
SnapshotGroups []string `mapstructure:"snapshot_groups"`
}
func stringInSlice(s []string, searchstr string) bool {
for _, item := range s {
if item == searchstr {
return true
}
}
return false
}
func (c *OMIConfig) Prepare(accessConfig *AccessConfig, ctx *interpolate.Context) []error {
var errs []error