mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-18 22:11:39 -04:00
7 lines
84 B
Go
7 lines
84 B
Go
package packer
|
|
|
|
type TTY interface {
|
|
ReadString() (string, error)
|
|
Close() error
|
|
}
|