12 lines
231 B
Go
12 lines
231 B
Go
package cap
|
|
|
|
import (
|
|
"github.com/hashicorp/vagrant-plugin-sdk/terminal"
|
|
)
|
|
|
|
func WriteHello(ui terminal.UI) error {
|
|
msg := "Hello from the write hello capability, compliments of the AlwaysTrue Host"
|
|
ui.Output(msg)
|
|
return nil
|
|
}
|