mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-02 12:17:39 -06:00
12 lines
160 B
Go
12 lines
160 B
Go
|
package etcdv2
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/terraform/backend"
|
||
|
)
|
||
|
|
||
|
func TestBackend_impl(t *testing.T) {
|
||
|
var _ backend.Backend = new(Backend)
|
||
|
}
|