fix(parser): add elf to all.go
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

This commit is contained in:
张泊明518370910136 2025-06-17 02:53:12 -04:00
parent 078a93b350
commit f7bf12dc57
GPG Key ID: D47306D7062CDA9D
2 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,7 @@ import (
_ "github.com/joint-online-judge/JOJ3/internal/parser/debug" _ "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/diff"
_ "github.com/joint-online-judge/JOJ3/internal/parser/dummy" _ "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/healthcheck"
_ "github.com/joint-online-judge/JOJ3/internal/parser/keyword" _ "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/log"

View File

@ -1,6 +1,5 @@
// Package elf parses output of the elf static analysis tool to // Package elf parses output of the elf static analysis tool to
// assign scores based on detected code issues. // assign scores based on detected code issues.
package elf package elf
import "github.com/joint-online-judge/JOJ3/internal/stage" import "github.com/joint-online-judge/JOJ3/internal/stage"