plans: staticcheck

This commit is contained in:
James Bardin 2020-12-01 16:07:40 -05:00
parent fa3e534142
commit a5f013830f
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
package plans
import (
"github.com/zclconf/go-cty/cty"
)
func mustNewDynamicValue(val cty.Value, ty cty.Type) DynamicValue {
ret, err := NewDynamicValue(val, ty)
if err != nil {
panic(err)
}
return ret
}