Refactoring to a cleaner architecture

This commit is contained in:
Deluan
2016-03-02 09:07:24 -05:00
parent 74478ce6f9
commit 272a499c7e
27 changed files with 120 additions and 120 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
package mocks
import (
"github.com/deluan/gosonic/repositories"
"errors"
"github.com/deluan/gosonic/domain"
)
func CreateMockPropertyRepo() *MockProperty {
@@ -10,7 +10,7 @@ func CreateMockPropertyRepo() *MockProperty {
}
type MockProperty struct {
repositories.Property
domain.PropertyRepository
data map[string]string
err bool
}