mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
12 lines
227 B
Go
12 lines
227 B
Go
// Copyright IBM Corp. 2024, 2026
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package function
|
|
|
|
import (
|
|
"github.com/zclconf/go-cty/cty"
|
|
)
|
|
|
|
func refineNotNull(b *cty.RefinementBuilder) *cty.RefinementBuilder {
|
|
return b.NotNull()
|
|
}
|