vaguerent/builtin/myplugin/host/cap/write_hello.go
2022-04-25 12:24:12 -05:00

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
}