initrd/config.go

11 lines
172 B
Go
Raw Normal View History

2019-03-25 04:29:24 +00:00
package main
2019-12-03 09:56:57 +00:00
import (
nconfig "novit.nc/direktil/pkg/config"
)
2019-03-25 04:29:24 +00:00
type config struct {
2019-12-03 09:56:57 +00:00
Layers []string `yaml:"layers"`
Files []nconfig.FileDef `yaml:"files"`
2019-03-25 04:29:24 +00:00
}