16 lines
286 B
Go
16 lines
286 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
|
|
execClient: createExecClient("localhost:5051", ""),
|
|
cachedMap: make(map[string]string),
|
|
})
|
|
}
|