Use string instead of ID type

This commit is contained in:
2016-12-20 16:52:26 +01:00
parent 83c36f00bf
commit 7c197ff49d
5 changed files with 7 additions and 8 deletions

2
id.go
View File

@@ -5,5 +5,5 @@ type ID [16]byte
// IDGenerator generates new IDs
type IDGenerator interface {
New() ID
New() string
}