refactor(recipe): move Tags method to new struct

This commit is contained in:
2024-07-08 11:45:47 +02:00
parent 6f90fc3025
commit eb62e0ecc3
4 changed files with 28 additions and 28 deletions

View File

@ -97,7 +97,7 @@ your SSH keys configured on your account.
}
}
tags, err := recipe.Tags()
tags, err := r.Tags()
if err != nil {
log.Fatal(err)
}

View File

@ -59,7 +59,7 @@ local file system.
mainAppVersion := imagesTmp[mainApp]
tags, err := recipe.Tags()
tags, err := r.Tags()
if err != nil {
log.Fatal(err)
}