1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Use the native context package

This commit is contained in:
Chris Cummer 2018-05-28 21:47:26 -07:00
parent 47e67c522b
commit 04dd3c2e55
2 changed files with 2 additions and 2 deletions

View File

@ -6,6 +6,7 @@
package gcal
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
@ -18,7 +19,6 @@ import (
"time"
"github.com/senorprogrammer/wtf/wtf"
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
"google.golang.org/api/calendar/v3"

View File

@ -1,11 +1,11 @@
package github
import (
"context"
"net/http"
"os"
ghb "github.com/google/go-github/github"
"golang.org/x/net/context"
"golang.org/x/oauth2"
)