From bd857b1bd0d83f385bf3ff97bc214a14bfd377e3 Mon Sep 17 00:00:00 2001 From: Xu Zhipei Date: Thu, 1 Nov 2018 14:56:30 +0800 Subject: [PATCH] fix(uuid): go.uuid api break change see: https://github.com/satori/go.uuid/issues/66 AND https://github.com/satori/go.uuid/issues/84 --- uuid.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uuid.go b/uuid.go index bc99513..e73713b 100644 --- a/uuid.go +++ b/uuid.go @@ -1,6 +1,6 @@ package gocelery -import uuid "github.com/satori/go.uuid" +import "github.com/gofrs/uuid" // generateUUID generates a v4 uuid and returns it as a string func generateUUID() string {