mirror of
https://github.com/criyle/go-judge.git
synced 2025-09-26 22:39:12 +08:00
12 lines
132 B
Go
12 lines
132 B
Go
//go:build !linux && !darwin
|
|
|
|
package stream
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func setWinsize(f *os.File, i *ResizeRequest) error {
|
|
return nil
|
|
}
|