mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 08:51:02 -06:00
8a070ddef0
Backends are a mechanism that allow abstracting the behavior of Terraform CLI from the actual core. This allows us to slip in special behavior such as state loading, remote operations, etc.
10 lines
102 B
Go
10 lines
102 B
Go
package backend
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestNil_impl(t *testing.T) {
|
|
var _ Backend = new(Nil)
|
|
}
|