mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
14 lines
241 B
Go
14 lines
241 B
Go
package atlas
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/backend"
|
|
)
|
|
|
|
// backend.CLI impl.
|
|
func (b *Backend) CLIInit(opts *backend.CLIOpts) error {
|
|
b.CLI = opts.CLI
|
|
b.CLIColor = opts.CLIColor
|
|
b.ContextOpts = opts.ContextOpts
|
|
return nil
|
|
}
|