mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-29 11:09:36 -05:00
Updated via: go get github.com/hashicorp/terraform@sdk-v0.11-with-go-modules and go mod tidy
12 lines
257 B
Go
12 lines
257 B
Go
package complete
|
|
|
|
// PredictSet expects specific set of terms, given in the options argument.
|
|
func PredictSet(options ...string) Predictor {
|
|
return predictSet(options)
|
|
}
|
|
|
|
type predictSet []string
|
|
|
|
func (p predictSet) Predict(a Args) []string {
|
|
return p
|
|
}
|