mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-21 23:41:41 -04:00
10 lines
155 B
Go
10 lines
155 B
Go
package function
|
|
|
|
import (
|
|
"github.com/zclconf/go-cty/cty"
|
|
)
|
|
|
|
func refineNotNull(b *cty.RefinementBuilder) *cty.RefinementBuilder {
|
|
return b.NotNull()
|
|
}
|