Files
Packer-Cn/packer/tty.go
T

7 lines
84 B
Go
Raw Normal View History

package packer
type TTY interface {
ReadString() (string, error)
2019-03-15 11:10:30 +01:00
Close() error
}