Test
No long description provided.
Installation
dagger install github.com/sevein/dagger-cache-volume-visibility-test@2ef252a385eb6cf8d065978dc245a68149b6ad68
Entrypoint
Return Type
Test
Example
dagger -m github.com/sevein/dagger-cache-volume-visibility-test@2ef252a385eb6cf8d065978dc245a68149b6ad68 call \
func (m *myModule) example() *Test {
return dag.
Test()
}
@function
def example() -> dag.Test:
return (
dag.test()
)
@func()
example(): Test {
return dag
.test()
}
Types
Test 🔗
run() 🔗
Return Type
Void !
Example
dagger -m github.com/sevein/dagger-cache-volume-visibility-test@2ef252a385eb6cf8d065978dc245a68149b6ad68 call \
run
func (m *myModule) example(ctx context.Context) {
return dag.
Test().
Run(ctx)
}
@function
async def example() -> None:
return await (
dag.test()
.run()
)
@func()
async example(): Promise<void> {
return dag
.test()
.run()
}