mirror of
https://github.com/criyle/go-judge.git
synced 2025-09-26 22:39:12 +08:00
16 lines
329 B
Go
16 lines
329 B
Go
//go:build !windows && !linux && !darwin
|
|
|
|
package env
|
|
|
|
import (
|
|
"errors"
|
|
"runtime"
|
|
|
|
"github.com/criyle/go-judge/env/pool"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func NewBuilder(c Config, logger *zap.Logger) (pool.EnvBuilder, map[string]any, error) {
|
|
return nil, nil, errors.New("environment is not support on this platform" + runtime.GOOS)
|
|
}
|