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