Browse Source

Replace x/net/context with context of stdlib

pull/1539/head
erwinvaneyk 7 years ago
parent
commit
3e2217b3f4
  1. 5
      server/api.go

5
server/api.go

@ -1,15 +1,12 @@
package server
import (
"context"
"errors"
"fmt"
"golang.org/x/crypto/bcrypt"
// go-grpc doesn't use the standard library's context.
// https://github.com/grpc/grpc-go/issues/711
"golang.org/x/net/context"
"github.com/dexidp/dex/api"
"github.com/dexidp/dex/pkg/log"
"github.com/dexidp/dex/server/internal"

Loading…
Cancel
Save