1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00
Files
cli/components/engine/client/termios_linux.go
Solomon Hykes e924ec5591 Moved server and client logic into sub-packages docker/server and docker/client, respectively. The UI is not affected.
Upstream-commit: e1b25e9b084a2375640b811a27b75b89d57666d9
Component: engine
2013-02-13 17:10:00 -08:00

9 lines
102 B
Go

package client
import "syscall"
const (
getTermios = syscall.TCGETS
setTermios = syscall.TCSETS
)