Skip to content

Commit

Permalink
cmd/githubissues: Update for githubapi API change.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitshur committed Mar 23, 2018
1 parent 31d6541 commit 0f62bfd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions cmd/githubissues/main.go
Expand Up @@ -54,10 +54,7 @@ func main() {
log.Fatalln("ghusers.NewService:", err)
}
notificationsService := ghnotifications.NewService(ghV3, ghV4, nil)
service, err := ghissues.NewService(ghV3, ghV4, notificationsService)
if err != nil {
log.Fatalln("ghissues.NewService:", err)
}
service := ghissues.NewService(ghV3, ghV4, notificationsService)

r := mux.NewRouter()

Expand Down

0 comments on commit 0f62bfd

Please sign in to comment.