packer-cn/packer/tty.go

7 lines
84 B
Go

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