Dagger
Search

proj

This module has been generated via dagger init and serves as a reference to
basic module structure as you get started with Dagger.

Two functions have been pre-created. You can modify, delete, or add to them,
as needed. They demonstrate usage of arguments and return types using simple
echo and grep commands. The functions can be called from the dagger CLI or
from one of the SDKs.

The first line in this comment block is a short description line and the
rest is a long description with more detail on the module's purpose or usage,
if appropriate. All modules should have a short description.

Installation

dagger install github.com/JCzz/proj@2875a7581f9b3f4678333c02d89e2ac191374aaf

Entrypoint

Return Type
Proj
Example
dagger -m github.com/JCzz/proj@2875a7581f9b3f4678333c02d89e2ac191374aaf call \
func (m *myModule) example() *Proj  {
	return dag.
			Proj()
}
@function
def example() -> dag.Proj:
	return (
		dag.proj()
	)
@func()
example(): Proj {
	return dag
		.proj()
}

Types

Proj 🔗

getHello() 🔗

Return Type
String !
Example
dagger -m github.com/JCzz/proj@2875a7581f9b3f4678333c02d89e2ac191374aaf call \
 get-hello
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Proj().
			GetHello(ctx)
}
@function
async def example() -> str:
	return await (
		dag.proj()
		.get_hello()
	)
@func()
async example(): Promise<string> {
	return dag
		.proj()
		.getHello()
}