JOJ3/internal/parser/resultdetail/meta.go
张泊明518370910136 542394a48a
All checks were successful
build / build (push) Successful in 1m48s
build / trigger-build-image (push) Successful in 7s
feat(parser/resultdetail): new parser with default conf
2024-10-09 18:05:59 -04:00

10 lines
171 B
Go

package resultdetail
import "github.com/joint-online-judge/JOJ3/internal/stage"
var name = "result-detail"
func init() {
stage.RegisterParser(name, &ResultDetail{})
}