chore: remove golang.org/x/net/context in favor of stdlib (#47532)

This PR removes golang.org context imports under pkg/services/* and replaces them with the stdlib context.

Closes #44178
This commit is contained in:
Kristin Laemmert
2022-04-11 08:46:21 -04:00
committed by GitHub
parent ef4c2672b3
commit bda3dd24e4
2 changed files with 4 additions and 5 deletions
@@ -1,11 +1,12 @@
package notifiers
import (
"context"
"github.com/grafana/grafana/pkg/infra/log"
"github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/services/encryption"
"github.com/grafana/grafana/pkg/services/notifications"
"golang.org/x/net/context"
)
type Manager interface {