package elf import "github.com/joint-online-judge/JOJ3/internal/stage" var name = "elf" type Conf struct { Score int Comment string } type Elf struct{} func init() { stage.RegisterParser(name, &Elf{}) }