11 lines
227 B
Go
11 lines
227 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import "github.com/firestuff/subcoding/grow"
|
||
|
|
import "github.com/firestuff/subcoding/vm"
|
||
|
|
|
||
|
|
type Config struct {
|
||
|
|
Definition *grow.Definition `yaml:"definition"`
|
||
|
|
|
||
|
|
Programs map[string]*vm.Program `yaml:"programs"`
|
||
|
|
}
|