17 lines
213 B
Go
17 lines
213 B
Go
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{})
|
|
}
|