Hello! I continue to compare pact v1 and v2 and he...
# pact-go
v
Hello! I continue to compare pact v1 and v2 and here is another diff: in v1 this part of interaction
Copy code
WillRespondWith(
			dsl.Response{
				Status: http.StatusOK,
				Headers: dsl.MapMatcher{
					"Content-Type": dsl.String("application/json"),
				},
				Body: dsl.Like(map[string]interface{}{
					"code":      dsl.Term(code, uuidMatcher),
					"closed-at": dsl.Timestamp(),
				}),
			},
		)
generated this part of contract: