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:
Deluan 2016-03-29 18:27:14 -04:00
parent 2dfa05ceb6
commit 9049d97820
8 changed files with 21 additions and 16 deletions

View file

@ -2,11 +2,12 @@ package api_test
import ( import (
"fmt" "fmt"
"github.com/astaxie/beego"
_ "github.com/deluan/gosonic/conf"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"
"strings" "strings"
"github.com/astaxie/beego"
_ "github.com/deluan/gosonic/init"
) )
const ( const (

View file

@ -2,13 +2,14 @@ package controllers_test
import ( import (
"fmt" "fmt"
"github.com/astaxie/beego"
_ "github.com/deluan/gosonic/conf"
"github.com/deluan/gosonic/tests"
. "github.com/smartystreets/goconvey/convey"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"
"testing" "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) { func TestErrorHandler(t *testing.T) {

12
glide.lock generated
View file

@ -1,5 +1,5 @@
hash: 74a8fca679ed86ccc4a42a35d772bdf0f918993c198a90ea0dbbae9e4d43a146 hash: a5cbc7366656c70b744e5eff395de78872a0d6fee5932036e8efc03e5193154d
updated: 2016-03-27T17:25:48.459693003-04:00 updated: 2016-03-29T18:13:23.845465378-04:00
imports: imports:
- name: github.com/astaxie/beego - name: github.com/astaxie/beego
version: 92d0b9ae95662d04e1d32eeffa52b4697b01ae37 version: 92d0b9ae95662d04e1d32eeffa52b4697b01ae37
@ -36,7 +36,7 @@ imports:
- name: github.com/golang/snappy - name: github.com/golang/snappy
version: 723cc1e459b8eea2dea4583200fd60757d40097a version: 723cc1e459b8eea2dea4583200fd60757d40097a
- name: github.com/gopherjs/gopherjs - name: github.com/gopherjs/gopherjs
version: 14ba2f52062a79512bbb6768908c95032395ce94 version: 64858154c27789453689ac91041a736c89abd49d
subpackages: subpackages:
- js - js
- name: github.com/jtolds/gls - name: github.com/jtolds/gls
@ -45,6 +45,8 @@ imports:
version: fe06da2f020c637f82e23c3a2b5e8d9e711baf2b version: fe06da2f020c637f82e23c3a2b5e8d9e711baf2b
- name: github.com/kennygrant/sanitize - name: github.com/kennygrant/sanitize
version: ce9fd1f6ce32afaa38b51feea32320fc8875e8e4 version: ce9fd1f6ce32afaa38b51feea32320fc8875e8e4
- name: github.com/koding/multiconfig
version: 40c0feeebcc24712305f55b63dcf4ac6e77b10ff
- name: github.com/nfnt/resize - name: github.com/nfnt/resize
version: 4d93a29130b1b6aba503e2aa8b50f516213ea80e version: 4d93a29130b1b6aba503e2aa8b50f516213ea80e
- name: github.com/siddontang/go - name: github.com/siddontang/go
@ -80,7 +82,7 @@ imports:
- internal/go-render/render - internal/go-render/render
- internal/oglematchers - internal/oglematchers
- name: github.com/smartystreets/goconvey - name: github.com/smartystreets/goconvey
version: 101844423e4188895b52ec7fcb5689d014f32c30 version: 55d548bcbd33d0fdfbd8844ede638af868cdf23e
subpackages: subpackages:
- convey - convey
- convey/reporting - convey/reporting
@ -101,7 +103,7 @@ imports:
- leveldb/memdb - leveldb/memdb
- leveldb/table - leveldb/table
- name: golang.org/x/net - name: golang.org/x/net
version: 1600a4cd699d70009ec28edfd69d3568f6bd757d version: 31df19d69da8728e9220def59b80ee577c3e48bf
subpackages: subpackages:
- html - html
- html/atom - html/atom

View file

@ -20,6 +20,7 @@ import:
- package: github.com/nfnt/resize - package: github.com/nfnt/resize
- package: github.com/deluan/itl - package: github.com/deluan/itl
- package: github.com/deluan/gomate - package: github.com/deluan/gomate
- package: github.com/koding/multiconfig
devImport: devImport:
- package: github.com/smartystreets/goconvey - package: github.com/smartystreets/goconvey

View file

@ -1,4 +1,4 @@
package conf package init
import ( import (
"github.com/deluan/gomate" "github.com/deluan/gomate"

View file

@ -1,4 +1,4 @@
package conf package init
import "mime" import "mime"

View file

@ -1,4 +1,4 @@
package conf package init
import ( import (
"github.com/deluan/gosonic/api" "github.com/deluan/gosonic/api"

View file

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"github.com/astaxie/beego" "github.com/astaxie/beego"
_ "github.com/deluan/gosonic/conf" _ "github.com/deluan/gosonic/init"
_ "github.com/deluan/gosonic/tasks" _ "github.com/deluan/gosonic/tasks"
) )