JOJ3/internal/executors/all.go
张泊明518370910136 b608a22cfd
All checks were successful
continuous-integration/drone/push Build is passing
feat: read sandbox conf
2024-06-30 02:42:51 -04:00

15 lines
437 B
Go

package executors
import (
_ "focs.ji.sjtu.edu.cn/git/FOCS-dev/JOJ3/internal/executors/dummy"
"focs.ji.sjtu.edu.cn/git/FOCS-dev/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)
}