Merge pull request #724 from chiffa-org/redundant_context_import

Move golang.org/x/net/context.Context interface implementation check to tests
This commit is contained in:
Javier Provecho Fernandez
2016-12-05 10:55:06 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,6 @@ import (
"github.com/gin-gonic/gin/binding"
"github.com/gin-gonic/gin/render"
"github.com/manucorporat/sse"
"golang.org/x/net/context"
)
// Content-Type MIME of the most common data formats
@ -50,8 +49,6 @@ type Context struct {
Accepted []string
}
var _ context.Context = &Context{}
/************************************/
/********** CONTEXT CREATION ********/
/************************************/