base
No long description provided.
Installation
dagger install github.com/fluent-ci-templates/base-pipeline@c2f9c622fd76e9e8cbfb2d18dbcf9c039ad57fdf
Entrypoint
Return Type
Base
Example
dagger -m github.com/fluent-ci-templates/base-pipeline@c2f9c622fd76e9e8cbfb2d18dbcf9c039ad57fdf 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@c2f9c622fd76e9e8cbfb2d18dbcf9c039ad57fdf 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()
}