mirror of https://github.com/docker/cli.git
9 lines
106 B
Go
9 lines
106 B
Go
|
package client
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
const (
|
||
|
getTermios = syscall.TIOCGETA
|
||
|
setTermios = syscall.TIOCSETA
|
||
|
)
|