mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-25 19:04:59 -05:00
7 lines
217 B
Go
7 lines
217 B
Go
|
|
package common
|
||
|
|
|
||
|
|
// call into one of the platform-specific implementations to get the current terminal dimensions
|
||
|
|
func GetTerminalDimensions() (width, height int, err error) {
|
||
|
|
return platformGetTerminalDimensions()
|
||
|
|
}
|