JOJ3/internal/parser/debug/meta.go
张泊明518370910136 58c6d5607f
All checks were successful
submodules sync / sync (push) Successful in 34s
build / build (push) Successful in 1m1s
build / trigger-build-image (push) Successful in 7s
feat(parser/debug): debug parser
2025-01-31 22:07:59 -05:00

10 lines
149 B
Go

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