JOJ3/internal/executor/local/meta.go
张泊明518370910136 7cd65c6e5a
Some checks failed
build / build (push) Failing after 29m47s
build / build (pull_request) Failing after 29m39s
build / trigger-build-image (pull_request) Has been cancelled
build / trigger-build-image (push) Has been cancelled
style: revert to original
2026-03-13 00:35:00 -07:00

15 lines
374 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{})
}