slides
No long description provided.
Installation
dagger install github.com/kpenfound/slides@8aeed60ec3c65c8162924738ae618728db558e7bEntrypoint
Return Type
Slides Example
dagger -m github.com/kpenfound/slides@8aeed60ec3c65c8162924738ae618728db558e7b 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@8aeed60ec3c65c8162924738ae618728db558e7b call \
slides --presentation stringfunc (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)
}