chore: fix module name

This commit is contained in:
张泊明518370910136 2024-10-04 05:20:55 -04:00
parent 0bfedd4625
commit b57e3f81ca
GPG Key ID: D47306D7062CDA9D
2 changed files with 2 additions and 2 deletions
internal/parsers/elf

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"
)