JOJ3/internal/executor/dummy/meta.go

12 lines
172 B
Go

package dummy
import "github.com/joint-online-judge/JOJ3/internal/stage"
var name = "dummy"
type Dummy struct{}
func init() {
stage.RegisterExecutor(name, &Dummy{})
}