1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-25 02:40:54 +00:00

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

View File

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

View File

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