Skip to content

Commit

Permalink
Merge pull request #66 from sensiblecodeio/urfave-module-path
Browse files Browse the repository at this point in the history
Update import for codegangsta/cli to urfave/cli
  • Loading branch information
StevenMaude committed Nov 7, 2019
2 parents 7f0664c + 26ce9df commit 2b7b214
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -3,6 +3,6 @@ module github.com/sensiblecodeio/hookbot
go 1.12

require (
github.com/codegangsta/cli v1.20.0
github.com/gorilla/websocket v1.4.1
github.com/urfave/cli v1.20.0
)
2 changes: 2 additions & 0 deletions go.sum
Expand Up @@ -4,3 +4,5 @@ github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH
github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
github.com/gorilla/websocket v1.4.1 h1:q7AeDBpnBk8AogcD4DSag/Ukw/KV+YhzLj2bP5HvKCM=
github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/urfave/cli v1.20.0 h1:fDqGv3UG/4jbVl/QkFwEdddtEDjh/5Ov6X+0B/3bPaw=
github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA=
2 changes: 1 addition & 1 deletion main.go
Expand Up @@ -9,7 +9,7 @@ import (
"os"
"regexp"

"github.com/codegangsta/cli"
"github.com/urfave/cli"

"github.com/sensiblecodeio/hookbot/pkg/hookbot"
"github.com/sensiblecodeio/hookbot/pkg/router/github"
Expand Down
2 changes: 1 addition & 1 deletion pkg/hookbot/router.go
Expand Up @@ -3,7 +3,7 @@ package hookbot
import (
"log"

"github.com/codegangsta/cli"
"github.com/urfave/cli"
)

type Router interface {
Expand Down
2 changes: 1 addition & 1 deletion pkg/router/github/github.go
Expand Up @@ -11,7 +11,7 @@ import (
"regexp"
"strings"

"github.com/codegangsta/cli"
"github.com/urfave/cli"

"github.com/sensiblecodeio/hookbot/pkg/hookbot"
"github.com/sensiblecodeio/hookbot/pkg/listen"
Expand Down

0 comments on commit 2b7b214

Please sign in to comment.