Dagger
Search

my-module

No long description provided.

Installation

dagger install github.com/jpadams/suchacrisis@8cd94d4d50b94df9c74976d9a1359aa62676136d

Entrypoint

Return Type
MyModule
Example
dagger -m github.com/jpadams/suchacrisis@8cd94d4d50b94df9c74976d9a1359aa62676136d call \
func (m *myModule) example() *MyModule  {
	return dag.
			MyModule()
}
@function
def example() -> dag.MyModule:
	return (
		dag.my_module()
	)
@func()
example(): MyModule {
	return dag
		.myModule()
}

Types

MyModule 🔗

test() 🔗

Test creates an Alpine container, writes three files, and emits custom spans for each.

Return Type
Directory !
Example
dagger -m github.com/jpadams/suchacrisis@8cd94d4d50b94df9c74976d9a1359aa62676136d call \
 test
func (m *myModule) example() *Directory  {
	return dag.
			MyModule().
			Test()
}
@function
def example() -> dagger.Directory:
	return (
		dag.my_module()
		.test()
	)
@func()
example(): Directory {
	return dag
		.myModule()
		.test()
}