Dagger
Search

dep

No long description provided.

Installation

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

Entrypoint

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

Types

Dep 🔗

fn() 🔗

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