hello
A Dagger module to say hello to the world
Installation
dagger install github.com/shykes/daggerverse/hello@f82c283510bac0399451dff7ffbec0274bfc3bd4Entrypoint
Return Type
HelloExample
dagger -m github.com/shykes/daggerverse/hello@f82c283510bac0399451dff7ffbec0274bfc3bd4 call \
func (m *MyModule) Example() *dagger.Hello  {
	return dag.
			Hello()
}@function
def example() -> dagger.Hello:
	return (
		dag.hello()
	)@func()
example(): Hello {
	return dag
		.hello()
}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
dagger -m github.com/shykes/daggerverse/hello@f82c283510bac0399451dff7ffbec0274bfc3bd4 call \
 hellofunc (m *MyModule) Example(ctx context.Context) string  {
	return dag.
			Hello().
			Hello(ctx)
}@function
async def example() -> str:
	return await (
		dag.hello()
		.hello()
	)@func()
async example(): Promise<string> {
	return dag
		.hello()
		.hello()
}