slides
No long description provided.
Installation
dagger install github.com/kpenfound/slides@8f61928c0f91f176097020949c5515f052bd10e6
Entrypoint
Return Type
Slides
Example
dagger -m github.com/kpenfound/slides@8f61928c0f91f176097020949c5515f052bd10e6 call \
func (m *MyModule) Example() *dagger.Slides {
return dag.
Slides()
}
@function
def example() -> dagger.Slides:
return (
dag.slides()
)
@func()
example(): Slides {
return dag
.slides()
}
Types
Slides 🔗
slides() 🔗
Run the slides
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
presentation | String ! | - | presentation file, e.g. self_healing_ci.md |
source | Directory | - | No description provided |
Example
dagger -m github.com/kpenfound/slides@8f61928c0f91f176097020949c5515f052bd10e6 call \
slides --presentation string
func (m *MyModule) Example(ctx context.Context, presentation string) string {
return dag.
Slides().
Slides(ctx, presentation)
}
@function
async def example(presentation: str) -> str:
return await (
dag.slides()
.slides(presentation)
)
@func()
async example(presentation: string): Promise<string> {
return dag
.slides()
.slides(presentation)
}