-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from vinhha96/feature/apply-option-func
Add optional func to init Store
- Loading branch information
Showing
6 changed files
with
441 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
module github.com/go-oauth2/mysql/v4 | ||
|
||
go 1.14 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/DATA-DOG/go-sqlmock v1.5.0 | ||
github.com/go-oauth2/oauth2/v4 v4.1.1 | ||
github.com/go-sql-driver/mysql v1.5.0 | ||
github.com/json-iterator/go v1.1.10 | ||
github.com/smartystreets/goconvey v1.6.4 | ||
github.com/stretchr/testify v1.6.1 | ||
gopkg.in/gorp.v2 v2.2.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-gorp/gorp v2.2.0+incompatible // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect | ||
github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/lib/pq v1.10.4 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.12 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect | ||
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/poy/onpar v1.1.2 // indirect | ||
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect | ||
github.com/ziutek/mymysql v1.5.4 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect | ||
) |
Oops, something went wrong.