mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-19 16:00:13 -05:00
8 lines
89 B
Go
8 lines
89 B
Go
package display
|
|
|
|
import "fmt"
|
|
|
|
func ClearCurrentLine() {
|
|
fmt.Print("\n\033[1A\033[K")
|
|
}
|