Files
steampipe/pkg/ociinstaller/assets_image.go
2025-03-06 16:34:18 +05:30

17 lines
302 B
Go

package ociinstaller
import "github.com/turbot/pipe-fittings/v2/ociinstaller"
type assetsImage struct {
ReportUI string
}
func (s *assetsImage) Type() ociinstaller.ImageType {
return ImageTypeAssets
}
// empty config for assets image
type assetsImageConfig struct {
ociinstaller.OciConfigBase
}