JOJ3/internal/executors/all.go
张泊明518370910136 a9a829da3f
Some checks failed
build-image / create-empty-commit (push) Failing after 4s
checks / build (push) Successful in 1m20s
feat: rename module
2024-09-30 17:38:40 -04:00

15 lines
427 B
Go

package executors
import (
_ "focs.ji.sjtu.edu.cn/git/JOJ/JOJ3/internal/executors/dummy"
"focs.ji.sjtu.edu.cn/git/JOJ/JOJ3/internal/executors/sandbox"
)
// this file does nothing but imports to ensure all the init() functions
// in the subpackages are called
// overwrite the default registered executors
func InitWithConf(sandboxExecServer, sandboxToken string) {
sandbox.InitWithConf(sandboxExecServer, sandboxToken)
}