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
15 lines
211 B
Go
15 lines
211 B
Go
//go:build !linux && !darwin
|
|
// +build !linux,!darwin
|
|
|
|
package grpcexecutor
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/criyle/go-judge/pb"
|
|
)
|
|
|
|
func setWinsize(f *os.File, i *pb.StreamRequest_ExecResize) error {
|
|
return nil
|
|
}
|