Dagger
Search

hello

A Dagger module to say hello to the world

Installation

dagger install github.com/shykes/daggerverse/hello@v0.1.2

Entrypoint

Return Type
Hello
Example
func (m *myModule) example() *Hello  {
	return dag.
			Hello()
}
@function
def example() -> dag.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
NameTypeDefault ValueDescription
greetingString "hello"No description provided
nameString "world"No description provided
giantBoolean -No description provided
shoutBoolean -No description provided
figletContainerContainer -No description provided
Example
dagger -m github.com/shykes/daggerverse/hello@3d608cb5e6b4b18036a471400bc4e6c753f229d7 call \
 hello
func (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()
}