mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-16 11:29:57 -04:00
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.
9 lines
102 B
Go
9 lines
102 B
Go
package backend
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestNil_impl(t *testing.T) {
|
|
var _ Backend = new(Nil)
|
|
}
|