dep2
No long description provided.
Installation
dagger install gitlab.com/dagger-modules/test/more/dagger-test-modules-public/subdir/dep2@323d56c9ece3492d13f58b8b603d31a7c511cd41
Entrypoint
Return Type
Dep2
Example
dagger -m gitlab.com/dagger-modules/test/more/dagger-test-modules-public/subdir/dep2@323d56c9ece3492d13f58b8b603d31a7c511cd41 call \
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 gitlab.com/dagger-modules/test/more/dagger-test-modules-public/subdir/dep2@323d56c9ece3492d13f58b8b603d31a7c511cd41 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()
}