Removed dependency on engine from persistence

This commit is contained in:
Deluan 2020-01-09 09:51:54 -05:00 committed by Deluan Quintão
parent 542bea6fcc
commit 24cbf766a3
10 changed files with 47 additions and 44 deletions

View file

@ -2,6 +2,8 @@ package engine
import (
"errors"
"github.com/cloudsonic/sonic-server/domain"
)
func CreateMockPropertyRepo() *MockProperty {
@ -9,7 +11,7 @@ func CreateMockPropertyRepo() *MockProperty {
}
type MockProperty struct {
PropertyRepository
domain.PropertyRepository
data map[string]string
err bool
}