JOJ3/internal/executors/sandbox/meta.go
张泊明518370910136 2237ce41eb
All checks were successful
continuous-integration/drone/push Build is passing
feat: postpone sandbox grpc connection time
2024-03-23 18:14:17 -04:00

17 lines
282 B
Go

package sandbox
import (
"focs.ji.sjtu.edu.cn/git/FOCS-dev/JOJ3/internal/stage"
)
var name = "sandbox"
func init() {
stage.RegisterExecutor(name, &Sandbox{
// TODO: read from conf
execServer: "localhost:5051",
token: "",
cachedMap: make(map[string]string),
})
}