Dagger
Search

base

No long description provided.

Installation

dagger install github.com/fluent-ci-templates/base-pipeline@34e09c73b35e413a0c57e1cc9c04784bd8e844fb

Entrypoint

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

Types

Base

hello()

Say hello

Return Type
String !
Arguments
NameTypeDefault ValueDescription
srcDirectory -: string | Directory | undefined}
Example
dagger -m github.com/fluent-ci-templates/base-pipeline@34e09c73b35e413a0c57e1cc9c04784bd8e844fb call \
 hello
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Base().
			Hello(ctx)
}
@function
async def example() -> str:
	return await (
		dag.base()
		.hello()
	)
@func()
async example(): Promise<string> {
	return dag
		.base()
		.hello()
}