bust/pkg/pipelines/default.go
2022-10-30 18:33:59 +01:00

21 lines
291 B
Go

package pipelines
import (
"log"
"git.front.kjuulh.io/kjuulh/byg"
)
func (p *Pipeline) WithDefault() *byg.Builder {
return byg.
New().
Step(
"default step",
byg.Step{
Execute: func(ctx byg.Context) error {
log.Println("Hello, world!")
return nil
},
})
}