driftctl/pkg/cmd/scan/output/config.go

13 lines
175 B
Go

package output
import "fmt"
type OutputConfig struct {
Key string
Path string
}
func (o *OutputConfig) String() string {
return fmt.Sprintf("%s://%s", o.Key, o.Path)
}