diff --git a/internal/question/models/answer.go b/internal/question/models/answer.go index b2d6f6b..cbe09f1 100644 --- a/internal/question/models/answer.go +++ b/internal/question/models/answer.go @@ -2,10 +2,8 @@ package models import ( "encoding/json" - // "fmt" "os" "path/filepath" - "strings" "github.com/platformsh/platformify/platformifier" ) @@ -157,12 +155,6 @@ func getStack(answersStack Stack) platformifier.Stack { // getRelationships returns a map of service names to their relationship names. func getRelationships(services []Service) map[string]string { - endpointRemap := map[string]string{ - "mariadb": "mysql", - "oracle-mysql": "mysql", - "chrome-headless": "http", - "redis-persistent": "redis", - } relationships := make(map[string]string) for _, service := range services { relationships[service.Name] = ""