JOJ3/internal/parser/all.go
张泊明518370910136 f7bf12dc57
All checks were successful
submodules sync / sync (push) Successful in 1m15s
build / build (push) Successful in 3m34s
build / trigger-build-image (push) Successful in 13s
fix(parser): add elf to all.go
2025-06-17 02:53:12 -04:00

24 lines
1.1 KiB
Go

// Package parser contains all the parsers.
package parser
import (
_ "github.com/joint-online-judge/JOJ3/internal/parser/clangtidy"
_ "github.com/joint-online-judge/JOJ3/internal/parser/cppcheck"
_ "github.com/joint-online-judge/JOJ3/internal/parser/cpplint"
_ "github.com/joint-online-judge/JOJ3/internal/parser/debug"
_ "github.com/joint-online-judge/JOJ3/internal/parser/diff"
_ "github.com/joint-online-judge/JOJ3/internal/parser/dummy"
_ "github.com/joint-online-judge/JOJ3/internal/parser/elf"
_ "github.com/joint-online-judge/JOJ3/internal/parser/healthcheck"
_ "github.com/joint-online-judge/JOJ3/internal/parser/keyword"
_ "github.com/joint-online-judge/JOJ3/internal/parser/log"
_ "github.com/joint-online-judge/JOJ3/internal/parser/plugin"
_ "github.com/joint-online-judge/JOJ3/internal/parser/resultdetail"
_ "github.com/joint-online-judge/JOJ3/internal/parser/resultstatus"
_ "github.com/joint-online-judge/JOJ3/internal/parser/sample"
_ "github.com/joint-online-judge/JOJ3/internal/parser/tierscore"
)
// this file does nothing but imports to ensure all the init() functions
// in the subpackages are called