Fixes context, and adds more info to it

This commit is contained in:
Deluan 2017-04-03 23:53:38 -04:00
parent fb299917d5
commit f7c182b1f8
5 changed files with 60 additions and 15 deletions

View file

@ -1,7 +1,6 @@
package api
import (
"context"
"encoding/xml"
"fmt"
"strconv"
@ -13,10 +12,7 @@ import (
"github.com/cloudsonic/sonic-server/utils"
)
type BaseAPIController struct {
beego.Controller
context context.Context
}
type BaseAPIController struct{ beego.Controller }
func (c *BaseAPIController) NewEmpty() responses.Subsonic {
return responses.Subsonic{Status: "ok", Version: beego.AppConfig.String("apiVersion")}