Blame internal/osbuild1/keymap_stage.go

Packit Service 15f37d
package osbuild1
Packit Service 15f37d
Packit Service 15f37d
type KeymapStageOptions struct {
Packit Service 15f37d
	Keymap string `json:"keymap"`
Packit Service 15f37d
}
Packit Service 15f37d
Packit Service 15f37d
func (KeymapStageOptions) isStageOptions() {}
Packit Service 15f37d
Packit Service 15f37d
func NewKeymapStage(options *KeymapStageOptions) *Stage {
Packit Service 15f37d
	return &Stage{
Packit Service 15f37d
		Name:    "org.osbuild.keymap",
Packit Service 15f37d
		Options: options,
Packit Service 15f37d
	}
Packit Service 15f37d
}