move config

This commit is contained in:
Mikaël Cluseau 2019-03-25 15:29:24 +11:00
parent 24c1c4ddca
commit 3a21cfa68e
2 changed files with 5 additions and 4 deletions

5
config.go Normal file
View File

@ -0,0 +1,5 @@
package main
type config struct {
Layers []string `yaml:"layers"`
}

View File

@ -29,10 +29,6 @@ var (
bootVersion string
)
type config struct {
Layers []string `yaml:"layers"`
}
func main() {
runtime.LockOSThread()