go_sysutils/envs/types.go

11 lines
153 B
Go
Raw Normal View History

package envs
type (
interpolateOpts struct {
noMapKey bool
noMapVal bool
isTagged bool
}
optInterpolate func(o *interpolateOpts) (err error)
)