go-judge/env/env_others.go

15 lines
290 B
Go

//go:build !windows && !linux && !darwin
package env
import (
"errors"
"runtime"
"github.com/criyle/go-judge/env/pool"
)
func NewBuilder(c Config) (pool.EnvBuilder, map[string]any, error) {
return nil, nil, errors.New("environment is not support on this platform" + runtime.GOOS)
}