mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-28 05:00:26 -04: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)
|
|
}
|