hello
A Dagger module to say hello to the world
Installation
dagger install github.com/shykes/hello@v0.1.2
Types
Hello 🔗
A Dagger module to say hello to the world!
hello() 🔗
Say hello to the world!
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
greeting | String | "hello" | Change the greeting |
name | String | "world" | Change the name |
giant | Boolean | - | Encode the message in giant multi-character letters |
shout | Boolean | - | Make the message uppercase, and add more exclamation points |
figletContainer | Container | - | Custom container for running the figlet tool |
Example
func (m *myModule) example(ctx context.Context) string {
return dag.
Hello().
Hello(ctx)
}