JOJ3/internal/executor/local/meta.go
张泊明518370910136 c3f7b0fa2b
Some checks failed
build / trigger-build-image (push) Blocked by required conditions
submodules sync / sync (push) Has been cancelled
build / build (push) Has been cancelled
feat(executor/local): simple local executor without limits
2024-11-28 10:05:44 -05:00

10 lines
151 B
Go

package local
import "github.com/joint-online-judge/JOJ3/internal/stage"
var name = "local"
func init() {
stage.RegisterExecutor(name, &Local{})
}