Moved server and client logic into sub-packages docker/server and docker/client, respectively. The UI is not affected.

This commit is contained in:
Solomon Hykes
2013-02-13 17:10:00 -08:00
commit f5594142a8
4 changed files with 284 additions and 0 deletions

8
termios_linux.go Normal file
View File

@ -0,0 +1,8 @@
package client
import "syscall"
const (
getTermios = syscall.TCGETS
setTermios = syscall.TCSETS
)