Dagger
Search

dep2

No long description provided.

Installation

dagger install github.com/sipsma/dagger-test-modules/subdir/dep2@3552ed87b58c65102481f1d8662a24324abbd528

Entrypoint

Return Type
Dep2
Example
func (m *myModule) example() *Dep2  {
	return dag.
			Dep2()
}
@function
def example() -> dag.Dep2:
	return (
		dag.dep2()
	)
@func()
example(): Dep2 {
	return dag
		.dep2()
}

Types

Dep2 🔗

fn() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Dep2().
			Fn(ctx)
}
@function
async def example() -> str:
	return await (
		dag.dep2()
		.fn()
	)
@func()
async example(): Promise<string> {
	return dag
		.dep2()
		.fn()
}