voteapp
No long description provided.
Installation
dagger install github.com/salaboy/example-voting-app@3fa8404ba33c4d47df32eb2f33f4e3c36ffcc511Entrypoint
Return Type
VoteappExample
dagger -m github.com/salaboy/example-voting-app@3fa8404ba33c4d47df32eb2f33f4e3c36ffcc511 call \
func (m *MyModule) Example() *dagger.Voteapp  {
	return dag.
			Voteapp()
}@function
def example() -> dagger.Voteapp:
	return (
		dag.voteapp()
	)@func()
example(): Voteapp {
	return dag
		.voteapp()
}Types
Voteapp 🔗
voteApp() 🔗
example usage: “dagger call vote-app –dir . up”
Return Type
Service !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| dir | Directory ! | - | No description provided | 
Example
dagger -m github.com/salaboy/example-voting-app@3fa8404ba33c4d47df32eb2f33f4e3c36ffcc511 call \
 vote-app --dir DIR_PATHfunc (m *MyModule) Example(dir *dagger.Directory) *dagger.Service  {
	return dag.
			Voteapp().
			VoteApp(dir)
}@function
def example(dir: dagger.Directory) -> dagger.Service:
	return (
		dag.voteapp()
		.vote_app(dir)
	)@func()
example(dir: Directory): Service {
	return dag
		.voteapp()
		.voteApp(dir)
}