mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
44bc7519a6
This doesn't actually work yet, but it builds and then panics in a pretty satisfying way.
14 lines
356 B
Go
14 lines
356 B
Go
package configupgrade
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/providers"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
// Upgrader is the main type in this package, containing all of the
|
|
// dependencies that are needed to perform upgrades.
|
|
type Upgrader struct {
|
|
Providers providers.Resolver
|
|
Provisioners map[string]terraform.ProvisionerFactory
|
|
}
|