Skip to content

Commit fda7ace

Browse files
committed
delete 1 file and update 4 files
1 parent 50ce706 commit fda7ace

File tree

5 files changed

+8
-23
lines changed

5 files changed

+8
-23
lines changed

.travis.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Postgres Storage for [OAuth 2.0](https://github.com/go-oauth2/oauth2)
22

3-
[![Build][Build-Status-Image]][Build-Status-Url] [![Codecov][codecov-image]][codecov-url] [![ReportCard][reportcard-image]][reportcard-url] [![GoDoc][godoc-image]][godoc-url] [![License][license-image]][license-url]
3+
[![ReportCard][reportcard-image]][reportcard-url] [![GoDoc][godoc-image]][godoc-url] [![License][license-image]][license-url]
44

55
## Install
66

go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ module github.com/JonathanMonga/go-oauth2-postgres/v1
33
go 1.20
44

55
require (
6+
github.com/DATA-DOG/go-sqlmock v1.5.0
67
github.com/go-oauth2/oauth2/v4 v4.5.2
78
github.com/json-iterator/go v1.1.12
8-
gopkg.in/gorp.v2 v2.2.0
9-
github.com/DATA-DOG/go-sqlmock v1.5.0
109
github.com/stretchr/testify v1.8.4
10+
gopkg.in/gorp.v2 v2.2.0
1111
)
1212

1313
require (
1414
github.com/davecgh/go-spew v1.1.1 // indirect
15+
github.com/lib/pq v1.10.9 // indirect
16+
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
17+
github.com/modern-go/reflect2 v1.0.2 // indirect
1518
github.com/pmezard/go-difflib v1.0.0 // indirect
1619
gopkg.in/yaml.v3 v3.0.1 // indirect
17-
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
18-
github.com/modern-go/reflect2 v1.0.2 // indirect
1920
)
20-

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47e
4141
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
4242
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
4343
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
44+
github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw=
45+
github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
4446
github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
4547
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
4648
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc=

mysql_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111
_ "github.com/lib/pq"
1212
. "github.com/smartystreets/goconvey/convey"
1313
"github.com/stretchr/testify/assert"
14-
"gopkg.in/gorp.v2"
1514
)
1615

1716
const (

0 commit comments

Comments
 (0)