Dagger
Search

projects

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/projects@14f620b82826fb6f35668a42b1e3e57e6c2267fb

Entrypoint

Return Type
Projects
Example
dagger -m github.com/JCzz/projects@14f620b82826fb6f35668a42b1e3e57e6c2267fb call \
func (m *myModule) example() *Projects  {
	return dag.
			Projects()
}
@function
def example() -> dag.Projects:
	return (
		dag.projects()
	)
@func()
example(): Projects {
	return dag
		.projects()
}

Types

Projects 🔗

getHello() 🔗

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