Rename osbuild2 package to osbuild

This commit is contained in:
Achilleas Koutsou 2022-07-12 12:48:43 +02:00
parent 01d87b4e60
commit 9d4a351ca6
218 changed files with 474 additions and 475 deletions

View file

@ -0,0 +1,15 @@
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
}