refactor(recipe): move GetComposeFiles to new struct

This commit is contained in:
2024-07-08 12:06:58 +02:00
parent ca1db33e97
commit 99da8d4e57
12 changed files with 70 additions and 64 deletions

View File

@ -136,7 +136,7 @@ var appNewCommand = cli.Command{
log.Fatal(err)
}
composeFiles, err := recipePkg.GetComposeFiles(recipe.Name, sampleEnv)
composeFiles, err := r.GetComposeFiles(sampleEnv)
if err != nil {
log.Fatal(err)
}