mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
revert: separation of write and read DBs
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
1bf94531fd
commit
3982ba7258
22 changed files with 78 additions and 161 deletions
|
@ -8,7 +8,6 @@ import (
|
|||
"github.com/google/uuid"
|
||||
"github.com/navidrome/navidrome/conf"
|
||||
"github.com/navidrome/navidrome/consts"
|
||||
"github.com/navidrome/navidrome/db"
|
||||
"github.com/navidrome/navidrome/log"
|
||||
"github.com/navidrome/navidrome/model"
|
||||
"github.com/navidrome/navidrome/model/request"
|
||||
|
@ -21,7 +20,7 @@ var _ = Describe("AlbumRepository", func() {
|
|||
|
||||
BeforeEach(func() {
|
||||
ctx := request.WithUser(log.NewContext(context.TODO()), model.User{ID: "userid", UserName: "johndoe"})
|
||||
repo = NewAlbumRepository(ctx, NewDBXBuilder(db.Db()))
|
||||
repo = NewAlbumRepository(ctx, GetDBXBuilder())
|
||||
})
|
||||
|
||||
Describe("Get", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue