voteapp
No long description provided.
Installation
dagger install github.com/salaboy/example-voting-app@3fa8404ba33c4d47df32eb2f33f4e3c36ffcc511
Entrypoint
Return Type
Voteapp
Example
dagger -m github.com/salaboy/example-voting-app@3fa8404ba33c4d47df32eb2f33f4e3c36ffcc511 call \
func (m *myModule) example() *Voteapp {
return dag.
Voteapp()
}
@function
def example() -> dag.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_PATH
func (m *myModule) example(dir *Directory) *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)
}