go_sysutils/envs/types.go
2024-04-11 12:46:13 -04:00

11 lines
153 B
Go

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