JOJ3/internal/parsers/dummy/meta.go
张泊明518370910136 27a1e4420e
All checks were successful
continuous-integration/drone/push Build is passing
feat: dummy binary + parser example
2024-03-12 16:22:21 -04:00

10 lines
152 B
Go

package dummy
import "focs.ji.sjtu.edu.cn/git/FOCS-dev/JOJ3/internal/stage"
var name = "dummy"
func init() {
stage.RegisterParser(name, &Dummy{})
}