dep
No long description provided.
Installation
dagger install github.com/sipsma/test-dagger-scale/dep@f4d2608abfba150e423f5745d053c7a8ee063103
Entrypoint
Return Type
Dep
Example
dagger -m github.com/sipsma/test-dagger-scale/dep@f4d2608abfba150e423f5745d053c7a8ee063103 call \
func (m *MyModule) Example() *dagger.Dep {
return dag.
Dep()
}
@function
def example() -> dagger.Dep:
return (
dag.dep()
)
@func()
example(): Dep {
return dag
.dep()
}
Types
Dep 🔗
scaleMoreBusyWork() 🔗
Return Type
Void !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
s | String ! | - | No description provided |
Example
dagger -m github.com/sipsma/test-dagger-scale/dep@f4d2608abfba150e423f5745d053c7a8ee063103 call \
scale-more-busy-work --s string
func (m *MyModule) Example(ctx context.Context, s string) {
return dag.
Dep().
ScaleMoreBusyWork(ctx, s)
}
@function
async def example(s: str) -> None:
return await (
dag.dep()
.scale_more_busy_work(s)
)
@func()
async example(s: string): Promise<void> {
return dag
.dep()
.scaleMoreBusyWork(s)
}