github.com/opentofu/opentofu@v1.7.1/internal/cloudplugin/interface.go (about)

     1  // Copyright (c) The OpenTofu Authors
     2  // SPDX-License-Identifier: MPL-2.0
     3  // Copyright (c) 2023 HashiCorp, Inc.
     4  // SPDX-License-Identifier: MPL-2.0
     5  
     6  package cloudplugin
     7  
     8  import (
     9  	"io"
    10  )
    11  
    12  type Cloud1 interface {
    13  	Execute(args []string, stdout, stderr io.Writer) int
    14  }