Skip to content

Commit bede7d5

Browse files
committed
handler: use std's lib context
1 parent 26c8e5d commit bede7d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/graphql-go/graphql"
1111

12-
"golang.org/x/net/context"
12+
"context"
1313
)
1414

1515
const (

handler_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/graphql-go/graphql"
1414
"github.com/graphql-go/graphql/testutil"
1515
"github.com/graphql-go/handler"
16-
"golang.org/x/net/context"
16+
"context"
1717
)
1818

1919
func decodeResponse(t *testing.T, recorder *httptest.ResponseRecorder) *graphql.Result {

0 commit comments

Comments
 (0)