mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Some small refactorings
This commit is contained in:
parent
c2927e105b
commit
d481864035
10 changed files with 137 additions and 94 deletions
|
@ -12,16 +12,22 @@ type MockShareRepo struct {
|
|||
|
||||
Entity interface{}
|
||||
Cols []string
|
||||
Err error
|
||||
Error error
|
||||
}
|
||||
|
||||
func (m *MockShareRepo) Save(entity interface{}) (string, error) {
|
||||
if m.Error != nil {
|
||||
return "", m.Error
|
||||
}
|
||||
m.Entity = entity
|
||||
return "id", m.Err
|
||||
return "id", nil
|
||||
}
|
||||
|
||||
func (m *MockShareRepo) Update(entity interface{}, cols ...string) error {
|
||||
if m.Error != nil {
|
||||
return m.Error
|
||||
}
|
||||
m.Entity = entity
|
||||
m.Cols = cols
|
||||
return m.Err
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue