bust/pkg/tasks/build.go

11 lines
125 B
Go
Raw Permalink Normal View History

2022-10-29 18:15:55 +02:00
package tasks
import "log"
func Build(imageTag string) error {
log.Printf("building image: %s", imageTag)
return nil
}