dapr
No long description provided.
Installation
dagger install github.com/marcosnils/daggerverse/dapr@v0.2.0
Entrypoint
Return Type
Dapr !
Arguments
Name | Type | Description |
---|---|---|
image | String | No description provided |
Example
dagger -m github.com/marcosnils/daggerverse/dapr@15660afb386b32b955d96ee42a7354338b56c570 call \
func (m *myModule) example() *Dapr {
return dag.
Dapr()
}
@function
def example() -> dag.Dapr:
return (
dag.dapr()
)
@func()
example(): Dapr {
return dag
.dapr()
}
Types
Dapr 🔗
image() 🔗
Return Type
String !
Example
dagger -m github.com/marcosnils/daggerverse/dapr@15660afb386b32b955d96ee42a7354338b56c570 call \
image
func (m *myModule) example(ctx context.Context) string {
return dag.
Dapr().
Image(ctx)
}
@function
async def example() -> str:
return await (
dag.dapr()
.image()
)
@func()
async example(): Promise<string> {
return dag
.dapr()
.image()
}
dapr() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
appId | String ! | - | No description provided |
appPort | Integer | - | No description provided |
appChannelAddress | String | - | No description provided |
componentsPath | Directory | - | No description provided |
Example
dagger -m github.com/marcosnils/daggerverse/dapr@15660afb386b32b955d96ee42a7354338b56c570 call \
dapr --app-id string
func (m *myModule) example(appId string) *Container {
return dag.
Dapr().
Dapr(appId)
}
@function
def example(app_id: str) -> dagger.Container:
return (
dag.dapr()
.dapr(app_id)
)
@func()
example(appId: string): Container {
return dag
.dapr()
.dapr(appId)
}