mirror of
https://github.com/criyle/go-judge.git
synced 2025-11-04 14:50:02 +08:00
- increase default tmpfs size to 128M - add /config to get file store path - remove memory only file store close #20
16 lines
303 B
Go
16 lines
303 B
Go
//go:build !windows && !linux && !darwin
|
|
// +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)
|
|
}
|