go-judge/env/env_others.go
2022-03-20 23:40:21 -07:00

15 lines
269 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, error) {
return nil, errors.New("environment is not support on this platform" + runtime.GOOS)
}