osbuild2: separate input base types into new file
Keep input base types / interfaces separately from stages for readability. Cleaned up some unused interfaces in the process.
This commit is contained in:
parent
e85fc3b48c
commit
6debb62758
2 changed files with 26 additions and 30 deletions
26
internal/osbuild2/input.go
Normal file
26
internal/osbuild2/input.go
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
package osbuild2
|
||||
|
||||
// Collection of Inputs for a Stage
|
||||
type Inputs interface {
|
||||
isStageInputs()
|
||||
}
|
||||
|
||||
// Single Input for a Stage
|
||||
type Input interface {
|
||||
isInput()
|
||||
}
|
||||
|
||||
// Fields shared between all Input types (should be embedded in each instance)
|
||||
type inputCommon struct {
|
||||
Type string `json:"type"`
|
||||
// Origin should be either 'org.osbuild.source' or 'org.osbuild.pipeline'
|
||||
Origin string `json:"origin"`
|
||||
}
|
||||
|
||||
type StageInput interface {
|
||||
isStageInput()
|
||||
}
|
||||
|
||||
type References interface {
|
||||
isReferences()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue