Skip to content

Commit

Permalink
githubapi: use modfile package from golang.org/x/mod
Browse files Browse the repository at this point in the history
This packages was previously not available in golang.org/x/mod.
By now, it is. Start using it since it's more canonical.
  • Loading branch information
dmitshur committed Nov 3, 2019
1 parent a1a38c1 commit a9bce3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion githubapi/githubapi.go
Expand Up @@ -18,11 +18,11 @@ import (
"dmitri.shuralyov.com/route/github" "dmitri.shuralyov.com/route/github"
"dmitri.shuralyov.com/state" "dmitri.shuralyov.com/state"
githubv3 "github.com/google/go-github/github" githubv3 "github.com/google/go-github/github"
"github.com/rogpeppe/go-internal/modfile"
"github.com/shurcooL/events" "github.com/shurcooL/events"
"github.com/shurcooL/events/event" "github.com/shurcooL/events/event"
"github.com/shurcooL/githubv4" "github.com/shurcooL/githubv4"
"github.com/shurcooL/users" "github.com/shurcooL/users"
"golang.org/x/mod/modfile"
) )


// NewService creates a GitHub-backed events.Service using given GitHub client. // NewService creates a GitHub-backed events.Service using given GitHub client.
Expand Down

0 comments on commit a9bce3d

Please sign in to comment.