mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 14:07:36 +03:00
Simplified DI resolution
This commit is contained in:
parent
e9861e1b26
commit
f4c1dbdd3c
8 changed files with 12 additions and 22 deletions
|
@ -7,7 +7,6 @@ import (
|
|||
"github.com/deluan/gosonic/api/responses"
|
||||
"github.com/deluan/gosonic/engine"
|
||||
"github.com/deluan/gosonic/utils"
|
||||
"github.com/karlkfi/inject"
|
||||
)
|
||||
|
||||
type BrowsingController struct {
|
||||
|
@ -16,7 +15,7 @@ type BrowsingController struct {
|
|||
}
|
||||
|
||||
func (c *BrowsingController) Prepare() {
|
||||
inject.ExtractAssignable(utils.Graph, &c.browser)
|
||||
utils.ResolveDependencies(&c.browser)
|
||||
}
|
||||
|
||||
func (c *BrowsingController) GetMediaFolders() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue