update as library

This commit is contained in:
2022-10-29 18:15:55 +02:00
parent 7577144747
commit 45ca537f6d
3 changed files with 15 additions and 18 deletions

10
pkg/tasks/build.go Normal file
View File

@@ -0,0 +1,10 @@
package tasks
import "log"
func Build(imageTag string) error {
log.Printf("building image: %s", imageTag)
return nil
}