beego package file path rewrite

This commit is contained in:
JessonChan 2015-11-10 13:10:42 +08:00
parent 07c93cd32c
commit 8603127c81
3 changed files with 5 additions and 3 deletions

View File

@ -15,7 +15,6 @@
package context
import (
"beego/acceptencoder"
"bytes"
"encoding/json"
"encoding/xml"
@ -29,6 +28,8 @@ import (
"strconv"
"strings"
"time"
"github.com/astaxie/beego/acceptencoder"
)
// BeegoOutput does work for sending response header.

View File

@ -15,7 +15,6 @@
package beego
import (
"beego/acceptencoder"
"bytes"
"errors"
"io"
@ -23,6 +22,8 @@ import (
"os"
"sync"
"time"
"github.com/astaxie/beego/acceptencoder"
)
var (

View File

@ -15,7 +15,6 @@
package beego
import (
"beego/acceptencoder"
"net/http"
"os"
"path"
@ -23,6 +22,7 @@ import (
"strconv"
"strings"
"github.com/astaxie/beego/acceptencoder"
"github.com/astaxie/beego/context"
"github.com/astaxie/beego/utils"
)