fix: revert gin link. (#20)

This commit is contained in:
Bo-Yi Wu 2017-03-18 07:45:46 -05:00 committed by GitHub
parent bec00ec825
commit 30e66044d0
4 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ import (
"time"
"gopkg.in/gin-contrib/cors.v1"
"gopkg.in/gin-gonic/gin.v1"
"github.com/gin-gonic/gin"
)
func main() {

View File

@ -3,7 +3,7 @@ package cors
import (
"net/http"
"gopkg.in/gin-gonic/gin.v1"
"github.com/gin-gonic/gin"
)
type cors struct {

View File

@ -7,8 +7,8 @@ import (
"testing"
"time"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
"gopkg.in/gin-gonic/gin.v1"
)
func init() {

View File

@ -3,8 +3,8 @@ package main
import (
"time"
"github.com/gin-gonic/gin"
"gopkg.in/gin-contrib/cors.v1"
"gopkg.in/gin-gonic/gin.v1"
)
func main() {