feat: elf parser (#21) #30

Merged
张泊明518370910136 merged 5 commits from elf into master 2025-05-24 17:00:21 +08:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit b57e3f81ca - Show all commits

View File

@ -1,6 +1,6 @@
package elf
import "focs.ji.sjtu.edu.cn/git/FOCS-dev/JOJ3/internal/stage"
import "github.com/joint-online-judge/JOJ3/internal/stage"
var name = "elf"

View File

@ -5,8 +5,8 @@ import (
"fmt"
"log/slog"
"focs.ji.sjtu.edu.cn/git/FOCS-dev/JOJ3/internal/stage"
"github.com/criyle/go-judge/envexec"
"github.com/joint-online-judge/JOJ3/internal/stage"
"github.com/mitchellh/mapstructure"
)