fix import path.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2016-12-13 10:06:25 +08:00
parent 7232ea358a
commit fc95b17f6a
4 changed files with 8 additions and 6 deletions

View File

@ -5,8 +5,9 @@ import (
"strings" "strings"
assetfs "github.com/elazarl/go-bindata-assetfs" assetfs "github.com/elazarl/go-bindata-assetfs"
"github.com/gin-gonic/contrib/static" "github.com/gin-contrib/static"
"github.com/gin-gonic/gin"
"gopkg.in/gin-gonic/gin.v1"
) )
type binaryFileSystem struct { type binaryFileSystem struct {

View File

@ -1,8 +1,9 @@
package main package main
import ( import (
"github.com/gin-gonic/contrib/static" "github.com/gin-contrib/static"
"github.com/gin-gonic/gin"
"gopkg.in/gin-gonic/gin.v1"
) )
func main() { func main() {

View File

@ -6,7 +6,7 @@ import (
"path" "path"
"strings" "strings"
"github.com/gin-gonic/gin" "gopkg.in/gin-gonic/gin.v1"
) )
type ServeFileSystem interface { type ServeFileSystem interface {

View File

@ -8,8 +8,8 @@ import (
"path/filepath" "path/filepath"
"testing" "testing"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"gopkg.in/gin-gonic/gin.v1"
) )
func performRequest(r http.Handler, method, path string) *httptest.ResponseRecorder { func performRequest(r http.Handler, method, path string) *httptest.ResponseRecorder {