debian-forge-composer/internal/osbuild/files_source.go
Tom Gundersen 3b774e0e6d osbuild: add source type
This represents the sources objects, for now only org.osbuild.files
is supported.

Signed-off-by: Tom Gundersen <teg@jklm.no>
2020-02-14 14:43:27 +01:00

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() {}