go-judge/env/env_others.go
2020-05-19 16:14:03 -04:00

15 lines
340 B
Go

// +build !windows,!linux,!darwin
package env
import (
"errors"
"runtime"
"github.com/criyle/go-judge/pkg/pool"
)
func NewBuilder(cinitPath, mountConf, tmpFsConf string, netShare bool, printLog func(v ...interface{})) (pool.EnvBuilder, error) {
return nil, errors.New("environment is not support on this platform" + runtime.GOOS)
}