Dagger
Search

test

No long description provided.

Installation

dagger install bitbucket.org/dagger-modules/dagger-test-modules-public/various-source-values/samedir@f1b295cc1bce8eeea33cc3f42f89452c6fb3429e

Entrypoint

Return Type
Test
Example
func (m *myModule) example() *Test  {
	return dag.
			Test()
}

Types

Test đź”—

containerEcho() đź”—

example usage: “dagger call container-echo –string-arg yo stdout”

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
stringArgString !-No description provided
Example
func (m *myModule) example(stringArg string) *Container  {
	return dag.
			Test().
			ContainerEcho(stringArg)
}

grepDir() đź”—

example usage: “dagger call grep-dir –directory-arg . –pattern GrepDir”

Return Type
String !
Arguments
NameTypeDefault ValueDescription
directoryArgDirectory !-No description provided
patternString !-No description provided
Example
func (m *myModule) example(ctx context.Context, directoryArg *Directory, pattern string) string  {
	return dag.
			Test().
			GrepDir(ctx, directoryArg, pattern)
}