Skip to content

Commit 3e74101

Browse files
committed
Switch fork repository gregjones/httpcache#104
1 parent 514b809 commit 3e74101

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ require (
77
github.com/go-sql-driver/mysql v1.5.0
88
github.com/google/go-cmp v0.5.6
99
github.com/google/go-github/v35 v35.2.0
10-
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
1110
github.com/hashicorp/go-plugin v1.4.0
1211
github.com/hashicorp/go-version v1.3.0
1312
github.com/jmoiron/sqlx v1.2.0
13+
github.com/m4ns0ur/httpcache v0.0.0-20190611155906-901d90724c79
1414
github.com/ory/dockertest/v3 v3.8.0
1515
github.com/patrickmn/go-cache v2.1.0+incompatible
1616
github.com/prometheus/client_golang v1.11.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/
107107
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4=
108108
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ=
109109
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
110-
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 h1:+ngKgrYPPJrOjhax5N+uePQ0Fh1Z7PheYoUI/0nzkPA=
111-
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA=
112110
github.com/hashicorp/go-hclog v0.14.1 h1:nQcJDQwIAGnmoUWp8ubocEX40cCml/17YkF6csQLReU=
113111
github.com/hashicorp/go-hclog v0.14.1/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ=
114112
github.com/hashicorp/go-plugin v1.4.0 h1:b0O7rs5uiJ99Iu9HugEzsM67afboErkHUWddUSpUO3A=
@@ -143,6 +141,8 @@ github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
143141
github.com/lib/pq v0.0.0-20180327071824-d34b9ff171c2/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
144142
github.com/lib/pq v1.0.0 h1:X5PMW56eZitiTeO7tKzZxFCSpbFZJtkMMooicw2us9A=
145143
github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
144+
github.com/m4ns0ur/httpcache v0.0.0-20190611155906-901d90724c79 h1:/0wy5YTjtUTaFURptRVMBeOJW3wnIvHursPNdnHV4As=
145+
github.com/m4ns0ur/httpcache v0.0.0-20190611155906-901d90724c79/go.mod h1:UawoqorwkpZ58qWiL+nVJM0Po7FrzAdCxYVh9GgTTaA=
146146
github.com/mattn/go-colorable v0.1.4 h1:snbPLB8fVfU9iwbbo30TPtbLRzwWu6aJS6Xh4eaaviA=
147147
github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=
148148
github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=

pkg/gh/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/bradleyfalzon/ghinstallation/v2"
99
"github.com/google/go-github/v35/github"
10-
"github.com/gregjones/httpcache"
10+
"github.com/m4ns0ur/httpcache"
1111
"golang.org/x/oauth2"
1212
)
1313

pkg/gh/github.go

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

1111
"github.com/bradleyfalzon/ghinstallation/v2"
12-
"github.com/gregjones/httpcache"
12+
"github.com/m4ns0ur/httpcache"
1313
)
1414

1515
var (

0 commit comments

Comments
 (0)