Dagger
Search

vito

No long description provided.

Installation

dagger install github.com/shykes/dagger/zenith/vito-mod@41c8793faca956f2465ab58a547e7617be97331f

Entrypoint

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

Types

Vito

helloWorld()

Return Type
String !
Example
dagger -m github.com/shykes/dagger/zenith/vito-mod@41c8793faca956f2465ab58a547e7617be97331f call \
 hello-world
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Vito().
			HelloWorld(ctx)
}
@function
async def example() -> str:
	return await (
		dag.vito()
		.hello_world()
	)
@func()
async example(): Promise<string> {
	return dag
		.vito()
		.helloWorld()
}