This represents the sources objects, for now only org.osbuild.files is supported. Signed-off-by: Tom Gundersen <teg@jklm.no>
8 lines
189 B
Go
8 lines
189 B
Go
package osbuild
|
|
|
|
// The FilesSourceOptions specifies a custom script to run in the image
|
|
type FilesSource struct {
|
|
URLs map[string]string `json:"urls"`
|
|
}
|
|
|
|
func (FilesSource) isSource() {}
|