openring
No long description provided.
Installation
dagger install github.com/levlaz/daggerverse/openring@v0.1.0Entrypoint
Return Type
OpenringExample
dagger -m github.com/levlaz/daggerverse/openring@627c9f936cb36c2cac625f466059435e4d013585 call \
func (m *MyModule) Example() *dagger.Openring  {
	return dag.
			Openring()
}@function
def example() -> dagger.Openring:
	return (
		dag.openring()
	)@func()
example(): Openring {
	return dag
		.openring()
}Types
Openring 🔗
ctr() 🔗
Return Type
Container !Example
dagger -m github.com/levlaz/daggerverse/openring@627c9f936cb36c2cac625f466059435e4d013585 call \
 ctrfunc (m *MyModule) Example() *dagger.Container  {
	return dag.
			Openring().
			Ctr()
}@function
def example() -> dagger.Container:
	return (
		dag.openring()
		.ctr()
	)@func()
example(): Container {
	return dag
		.openring()
		.ctr()
}openring() 🔗
Generate Openring snippet
Return Type
File !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| sources | File ! | - | File containing list of feeds to include | 
| template | File | - | Optional HTML template file | 
Example
dagger -m github.com/levlaz/daggerverse/openring@627c9f936cb36c2cac625f466059435e4d013585 call \
 openring --sources file:pathfunc (m *MyModule) Example(sources *dagger.File) *dagger.File  {
	return dag.
			Openring().
			Openring(sources)
}@function
def example(sources: dagger.File) -> dagger.File:
	return (
		dag.openring()
		.openring(sources)
	)@func()
example(sources: File): File {
	return dag
		.openring()
		.openring(sources)
}