packer-cn/packer/tty.go
2019-03-15 11:10:30 +01:00

7 lines
84 B
Go

package packer
type TTY interface {
ReadString() (string, error)
Close() error
}