Como limpar o terminal Golang

cmd := exec.Command("clear")
cmd.Stdout = os.Stdout
cmd.Run()
Restu Wahyu Saputra