JOJ3/cmd/joj3/conf.go

20 lines
291 B
Go

package main
import "focs.ji.sjtu.edu.cn/git/FOCS-dev/JOJ3/internal/stage"
type Conf struct {
LogLevel int
OutputPath string
Stages []struct {
Name string
Executor struct {
Name string
With stage.Cmd
}
Parser struct {
Name string
With interface{}
}
}
}