debian-forge-composer/internal/osbuild/tree_input.go
2022-07-14 16:54:00 +02:00

15 lines
249 B
Go

package osbuild
// Tree inputs
type TreeInput struct {
inputCommon
}
func (TreeInput) isInput() {}
func NewTreeInput() *TreeInput {
input := new(TreeInput)
input.Type = "org.osbuild.tree"
input.Origin = "org.osbuild.pipeline"
return input
}