Moved properties to engine layer

This commit is contained in:
Deluan
2016-03-08 18:40:16 -05:00
parent 067517a916
commit 8607e25c90
8 changed files with 20 additions and 18 deletions
+3 -2
View File
@@ -2,7 +2,8 @@ package mocks
import (
"errors"
"github.com/deluan/gosonic/domain"
"github.com/deluan/gosonic/engine"
)
func CreateMockPropertyRepo() *MockProperty {
@@ -10,7 +11,7 @@ func CreateMockPropertyRepo() *MockProperty {
}
type MockProperty struct {
domain.PropertyRepository
engine.PropertyRepository
data map[string]string
err bool
}