15 lines
249 B
Go
15 lines
249 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 config
|
|
execClient: createExecClient("localhost:5051", ""),
|
|
})
|
|
}
|