Dagger
Search

openring

No long description provided.

Installation

dagger install github.com/levlaz/daggerverse/openring@f9ed02a6c9bf60a787218b73d29b4cd9eef2fc98

Entrypoint

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

Types

Openring 🔗

ctr() 🔗

Return Type
Container !
Example
Function Openring.ctr is not accessible from the openring module
func (m *myModule) example()   {
	return dag.
			Openring().
			Ctr()
}
@function
def example() -> :
	return (
		dag.openring()
		.ctr()
	)
@func()
example():  {
	return dag
		.openring()
		.ctr()
}

openring() 🔗

Generate Openring snippet

Return Type
File !
Arguments
NameTypeDefault ValueDescription
sourcesFile !-No description provided
Example
Function Openring.openring is not accessible from the openring module
func (m *myModule) example(sources )   {
	return dag.
			Openring().
			Openring(sources)
}
@function
def example(sources: ) -> :
	return (
		dag.openring()
		.openring(sources)
	)
@func()
example(sources: ):  {
	return dag
		.openring()
		.openring(sources)
}