base
No long description provided.
Installation
dagger install github.com/fluent-ci-templates/base-pipeline@v0.10.1
Entrypoint
Return Type
Base
Example
dagger -m github.com/fluent-ci-templates/base-pipeline@6b84370bf740b591e14ad6bc96751a3bede19c21 call \
func (m *myModule) example() *Base {
return dag.
Base()
}
@function
def example() -> dag.Base:
return (
dag.base()
)
@func()
example(): Base {
return dag
.base()
}
Types
Base 🔗
hello() 🔗
Say hello
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
src | Directory | - | : string | Directory | undefined} |
Example
dagger -m github.com/fluent-ci-templates/base-pipeline@6b84370bf740b591e14ad6bc96751a3bede19c21 call \
hello
func (m *myModule) example(ctx context.Context) string {
return dag.
Base().
Hello(ctx)
}
@function
async def example() -> str:
return await (
dag.base()
.hello()
)
@func()
async example(): Promise<string> {
return dag
.base()
.hello()
}