File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ services:
44 - docker
55
66go :
7- - 1.6
8- - 1.7
9- - 1.8
10- - master
7+ - " 1.9 "
8+ - " 1.10 "
9+ - " 1.11 "
10+ - " stable "
1111
1212install :
1313 - go get -v -d
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ package goengine
33import (
44 "fmt"
55
6+ "github.com/gofrs/uuid"
67 "github.com/hellofresh/goengine/reflection"
7- "github.com/pborman/uuid"
88)
99
1010type AggregateRoot interface {
@@ -24,7 +24,7 @@ type AggregateRootBased struct {
2424
2525// NewAggregateRootBased constructor
2626func NewAggregateRootBased (source interface {}) * AggregateRootBased {
27- return NewEventSourceBasedWithID (source , uuid .New ())
27+ return NewEventSourceBasedWithID (source , uuid .Must ( uuid . NewV4 ()). String ())
2828}
2929
3030// NewEventSourceBasedWithID constructor
You can’t perform that action at this time.
0 commit comments