JOJ3/internal/parser/all.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

18 lines
786 B
Go

package parsers
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/diff"
_ "github.com/joint-online-judge/JOJ3/internal/parser/dummy"
_ "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/resultdetail"
_ "github.com/joint-online-judge/JOJ3/internal/parser/resultstatus"
_ "github.com/joint-online-judge/JOJ3/internal/parser/sample"
)
// this file does nothing but imports to ensure all the init() functions
// in the subpackages are called