JOJ3/internal/executor/local/meta.go
张泊明518370910136 afd1a6ab9c
Some checks failed
build / trigger-build-image (push) Blocked by required conditions
build / build (push) Has been cancelled
fix: simplify check logic
2026-03-13 00:31:17 -07:00

17 lines
379 B
Go

// Package local implements an executor that runs commands directly on the local
// system. It passes current environment variables to the command, which can be
// used for passing run time parameters.
package local
import (
"github.com/joint-online-judge/JOJ3/internal/stage"
)
var name = "local"
type Local struct{}
func init() {
stage.RegisterExecutor(name, &Local{})
}