mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
12 lines
168 B
Go
12 lines
168 B
Go
package command
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/go-getter"
|
|
)
|
|
|
|
func TestUiModuleStorage_impl(t *testing.T) {
|
|
var _ getter.Storage = new(uiModuleStorage)
|
|
}
|