Dagger
Search

slim

No long description provided.

Installation

dagger install github.com/slimtoolkit/daggerverse/slim@eb734f4a7d142a2d3491ee1e82803c94ca8f01ca

Entrypoint

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

Types

Slim 🔗

minify() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
containerContainer !-No description provided
modeStringKind -No description provided
probeHttpBooleanKind -No description provided
probeExecStringKind -No description provided
showClogsBooleanKind -No description provided
slimDebugBooleanKind -No description provided
Example
Function Slim.minify is not accessible from the slim module
func (m *myModule) example(container )   {
	return dag.
			Slim().
			Minify(container)
}
@function
def example(container: ) -> :
	return (
		dag.slim()
		.minify(container)
	)
@func()
example(container: ):  {
	return dag
		.slim()
		.minify(container)
}

debug() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
containerContainer !-No description provided
Example
Function Slim.debug is not accessible from the slim module
func (m *myModule) example(container )   {
	return dag.
			Slim().
			Debug(container)
}
@function
def example(container: ) -> :
	return (
		dag.slim()
		.debug(container)
	)
@func()
example(container: ):  {
	return dag
		.slim()
		.debug(container)
}