Using sorted sets

This commit is contained in:
Deluan
2016-03-05 19:40:36 -05:00
parent 3db18d8bd6
commit d2701ea67c
3 changed files with 13 additions and 11 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ package domain
type BaseRepository interface {
NewId(fields ...string) string
CountAll() (int, error)
CountAll() (int64, error)
Exists(id string) (bool, error)
}