Rename osbuild2 package to osbuild
This commit is contained in:
parent
01d87b4e60
commit
9d4a351ca6
218 changed files with 474 additions and 475 deletions
15
internal/osbuild/tree_input.go
Normal file
15
internal/osbuild/tree_input.go
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue