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