driftctl/pkg/iac/terraform/state/backend/file_reader.go

12 lines
137 B
Go

package backend
import (
"os"
)
const BackendKeyFile = ""
func NewFileReader(path string) (Backend, error) {
return os.Open(path)
}