diff --git a/internal/sshmanager/deploy.go b/internal/sshmanager/deploy.go index 30338ee..9fe1ea2 100644 --- a/internal/sshmanager/deploy.go +++ b/internal/sshmanager/deploy.go @@ -20,9 +20,9 @@ type DeployKey struct { } type DeployResult struct { - Success bool - Messages []string - Errors []string + Success bool `json:"success"` + Messages []string `json:"messages"` + Errors []string `json:"errors"` } func DeployKeysToMachine(ctx context.Context, serverKeyPath string, host string, port int, user string, keys []DeployKey, knownHostsHosts []string) (*DeployResult, error) {