Skip to content

Commit 6ede848

Browse files
committed
convert to rv org
1 parent 12664cb commit 6ede848

5 files changed

Lines changed: 4 additions & 7 deletions

File tree

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
module github.com/thestephenstanton/hapi
1+
module github.com/RedVentures/hapi
22

33
go 1.13
44

55
require (
6-
github.com/gorilla/mux v1.7.3 // indirect
76
github.com/pkg/errors v0.9.1
87
github.com/stretchr/testify v1.4.0
98
)

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
22
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3-
github.com/gorilla/mux v1.7.3 h1:gnP5JzjVOuiZD07fKKToCAOjS0yOpj/qPETTXCCS6hw=
4-
github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
53
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
64
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
75
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=

helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"net/http"
66

7-
"github.com/thestephenstanton/hapi/errors"
7+
"github.com/RedVentures/hapi/errors"
88
)
99

1010
// GetQueryParam will return the first value for the key provided and true. If no key was found OR

respond.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"net/http"
66

7-
"github.com/thestephenstanton/hapi/errors"
7+
"github.com/RedVentures/hapi/errors"
88
)
99

1010
type hapiError interface {

respond_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
goerrors "github.com/pkg/errors"
1111

12+
"github.com/RedVentures/hapi/errors"
1213
"github.com/stretchr/testify/assert"
13-
"github.com/thestephenstanton/hapi/errors"
1414
)
1515

1616
// helps with TestRespond

0 commit comments

Comments
 (0)