mirror of
https://github.com/criyle/go-judge.git
synced 2025-11-04 14:50:02 +08:00
15 lines
340 B
Go
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)
|
|
}
|