From 31e4cea375254014bc0b3ae980cefcec58b3f581 Mon Sep 17 00:00:00 2001 From: Arnaud Berthomier Date: Mon, 8 Oct 2018 15:01:20 -0500 Subject: [PATCH] Switch to gofrs/uuid package Seeing the inactivity of the satori/go.uuid repository, a group of Go developers has stepped up to maintain it, fixing a few issues. It does not cost much, and also improves Lile. :sparkles: See also: https://github.com/satori/go.uuid/issues/84 --- utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.go b/utils.go index 65de589..e7a2a9e 100644 --- a/utils.go +++ b/utils.go @@ -4,7 +4,7 @@ import ( "net" "time" - uuid "github.com/satori/go.uuid" + "github.com/gofrs/uuid" "google.golang.org/grpc" )