mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-22 10:00:23 -04:00
25 lines
496 B
Go
25 lines
496 B
Go
package ociinstaller
|
|
|
|
import "github.com/turbot/pipe-fittings/v2/ociinstaller"
|
|
|
|
type fdwImage struct {
|
|
BinaryFile string
|
|
ReadmeFile string
|
|
LicenseFile string
|
|
ControlFile string
|
|
SqlFile string
|
|
}
|
|
|
|
func (s *fdwImage) Type() ociinstaller.ImageType {
|
|
return ImageTypeFdw
|
|
}
|
|
|
|
type FdwImageConfig struct {
|
|
ociinstaller.OciConfigBase
|
|
Fdw struct {
|
|
Name string `json:"name,omitempty"`
|
|
Organization string `json:"organization,omitempty"`
|
|
Version string `json:"version"`
|
|
}
|
|
}
|