Test
No long description provided.
Installation
dagger install github.com/sevein/dagger-cache-volume-visibility-test@2ef252a385eb6cf8d065978dc245a68149b6ad68Entrypoint
Return Type
TestExample
dagger -m github.com/sevein/dagger-cache-volume-visibility-test@2ef252a385eb6cf8d065978dc245a68149b6ad68 call \
func (m *MyModule) Example() *dagger.Test  {
	return dag.
			Test()
}@function
def example() -> dagger.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 \
 runfunc (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()
}