JOJ3/internal/parser/file/meta.go
张泊明518370910136 862693bf1f
All checks were successful
submodules sync / sync (push) Successful in 35s
build / build (push) Successful in 1m6s
build / trigger-build-image (push) Successful in 6s
feat(parser/file): show file content
2024-11-29 01:53:30 -05:00

10 lines
146 B
Go

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