JOJ3/internal/parser/elf/meta.go
张泊明518370910136 a4232884c5
All checks were successful
build / build (push) Successful in 3m15s
build / build (pull_request) Successful in 3m14s
build / trigger-build-image (push) Has been skipped
build / trigger-build-image (pull_request) Has been skipped
refactor(parser/elf): modern structure
2025-05-24 04:18:16 -04:00

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{})
}