Files
Packer-Cn/packer/tty.go
T

7 lines
84 B
Go

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