mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Moving code away from conf package.
This is necessary, as the conf package will hold only configuration, and cannot have dependencies on other packages
This commit is contained in:
parent
2dfa05ceb6
commit
9049d97820
8 changed files with 21 additions and 16 deletions
|
@ -2,11 +2,12 @@ package api_test
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/astaxie/beego"
|
||||
_ "github.com/deluan/gosonic/conf"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"strings"
|
||||
|
||||
"github.com/astaxie/beego"
|
||||
_ "github.com/deluan/gosonic/init"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -2,13 +2,14 @@ package controllers_test
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/astaxie/beego"
|
||||
_ "github.com/deluan/gosonic/conf"
|
||||
"github.com/deluan/gosonic/tests"
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"testing"
|
||||
|
||||
"github.com/astaxie/beego"
|
||||
_ "github.com/deluan/gosonic/init"
|
||||
"github.com/deluan/gosonic/tests"
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
)
|
||||
|
||||
func TestErrorHandler(t *testing.T) {
|
||||
|
|
12
glide.lock
generated
12
glide.lock
generated
|
@ -1,5 +1,5 @@
|
|||
hash: 74a8fca679ed86ccc4a42a35d772bdf0f918993c198a90ea0dbbae9e4d43a146
|
||||
updated: 2016-03-27T17:25:48.459693003-04:00
|
||||
hash: a5cbc7366656c70b744e5eff395de78872a0d6fee5932036e8efc03e5193154d
|
||||
updated: 2016-03-29T18:13:23.845465378-04:00
|
||||
imports:
|
||||
- name: github.com/astaxie/beego
|
||||
version: 92d0b9ae95662d04e1d32eeffa52b4697b01ae37
|
||||
|
@ -36,7 +36,7 @@ imports:
|
|||
- name: github.com/golang/snappy
|
||||
version: 723cc1e459b8eea2dea4583200fd60757d40097a
|
||||
- name: github.com/gopherjs/gopherjs
|
||||
version: 14ba2f52062a79512bbb6768908c95032395ce94
|
||||
version: 64858154c27789453689ac91041a736c89abd49d
|
||||
subpackages:
|
||||
- js
|
||||
- name: github.com/jtolds/gls
|
||||
|
@ -45,6 +45,8 @@ imports:
|
|||
version: fe06da2f020c637f82e23c3a2b5e8d9e711baf2b
|
||||
- name: github.com/kennygrant/sanitize
|
||||
version: ce9fd1f6ce32afaa38b51feea32320fc8875e8e4
|
||||
- name: github.com/koding/multiconfig
|
||||
version: 40c0feeebcc24712305f55b63dcf4ac6e77b10ff
|
||||
- name: github.com/nfnt/resize
|
||||
version: 4d93a29130b1b6aba503e2aa8b50f516213ea80e
|
||||
- name: github.com/siddontang/go
|
||||
|
@ -80,7 +82,7 @@ imports:
|
|||
- internal/go-render/render
|
||||
- internal/oglematchers
|
||||
- name: github.com/smartystreets/goconvey
|
||||
version: 101844423e4188895b52ec7fcb5689d014f32c30
|
||||
version: 55d548bcbd33d0fdfbd8844ede638af868cdf23e
|
||||
subpackages:
|
||||
- convey
|
||||
- convey/reporting
|
||||
|
@ -101,7 +103,7 @@ imports:
|
|||
- leveldb/memdb
|
||||
- leveldb/table
|
||||
- name: golang.org/x/net
|
||||
version: 1600a4cd699d70009ec28edfd69d3568f6bd757d
|
||||
version: 31df19d69da8728e9220def59b80ee577c3e48bf
|
||||
subpackages:
|
||||
- html
|
||||
- html/atom
|
||||
|
|
|
@ -20,6 +20,7 @@ import:
|
|||
- package: github.com/nfnt/resize
|
||||
- package: github.com/deluan/itl
|
||||
- package: github.com/deluan/gomate
|
||||
- package: github.com/koding/multiconfig
|
||||
|
||||
devImport:
|
||||
- package: github.com/smartystreets/goconvey
|
||||
- package: github.com/smartystreets/goconvey
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package conf
|
||||
package init
|
||||
|
||||
import (
|
||||
"github.com/deluan/gomate"
|
|
@ -1,4 +1,4 @@
|
|||
package conf
|
||||
package init
|
||||
|
||||
import "mime"
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package conf
|
||||
package init
|
||||
|
||||
import (
|
||||
"github.com/deluan/gosonic/api"
|
2
main.go
2
main.go
|
@ -4,7 +4,7 @@ import (
|
|||
"fmt"
|
||||
|
||||
"github.com/astaxie/beego"
|
||||
_ "github.com/deluan/gosonic/conf"
|
||||
_ "github.com/deluan/gosonic/init"
|
||||
_ "github.com/deluan/gosonic/tasks"
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue