fix: function names

This commit is contained in:
Elton Minetto
2020-06-30 13:37:51 -03:00
parent 4c6b43b04d
commit 2ae9c39824
11 changed files with 50 additions and 50 deletions
+3 -3
View File
@@ -16,13 +16,13 @@ type Writer interface {
Delete(id entity.ID) error
}
//Repository repository interface
type Repository interface {
//repository interface
type repository interface {
Reader
Writer
}
//Manager interface
type Manager interface {
Repository
repository
}