Dagger
Search

dep2

No long description provided.

Installation

dagger install github.com/dagger/dagger-test-modules/subdir/dep2@d7299e935a195f3e1a29bc39537ed270f4f378d5

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
dagger -m github.com/dagger/dagger-test-modules/subdir/dep2@d7299e935a195f3e1a29bc39537ed270f4f378d5 call \
 fn
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()
}