hello
A Dagger module to say hello to the world
Installation
dagger install github.com/shykes/daggerverse/hello@v0.1.1
Entrypoint
Return Type
Hello
Example
dagger -m github.com/shykes/daggerverse/hello@ae621effb007acc22c5ec4e4f1c69fb5887a7073 call \
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
Name | Type | Default Value | Description |
---|---|---|---|
greeting | String | "hello" | No description provided |
name | String | "world" | No description provided |
giant | Boolean | - | No description provided |
shout | Boolean | - | No description provided |
figletContainer | Container | - | No description provided |
Example
dagger -m github.com/shykes/daggerverse/hello@ae621effb007acc22c5ec4e4f1c69fb5887a7073 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()
}