use context instead of x/net/context (#1922)

This commit is contained in:
田欧
2019-06-03 22:52:33 +08:00
committed by GitHub
parent bfecd88fc4
commit 73c4633943
2 changed files with 1 additions and 7 deletions

View File

@ -6,6 +6,7 @@ package gin
import (
"bytes"
"context"
"errors"
"fmt"
"html/template"
@ -24,7 +25,6 @@ import (
"github.com/gin-gonic/gin/binding"
"github.com/golang/protobuf/proto"
"github.com/stretchr/testify/assert"
"golang.org/x/net/context"
testdata "github.com/gin-gonic/gin/testdata/protoexample"
)