Skip to content

Commit

Permalink
upgrade and generate all gomodule files
Browse files Browse the repository at this point in the history
Signed-off-by: Avelino <t@avelino.xxx>
  • Loading branch information
avelino committed Jul 30, 2020
1 parent 86fce87 commit 94cf6e8
Show file tree
Hide file tree
Showing 10 changed files with 1,388 additions and 0 deletions.
11 changes: 11 additions & 0 deletions adapters/go.mod
@@ -1,3 +1,14 @@
module github.com/prest/prest/adapters

go 1.13

require (
github.com/cznic/ql v1.2.0 // indirect
github.com/lib/pq v1.8.0 // indirect
github.com/mattn/go-sqlite3 v1.14.0 // indirect
github.com/nuveo/log v0.0.0-20190430190217-44d02db6bdf8 // indirect
github.com/prest/prest/config v0.0.0-20200729234819-07cc1b6b492f // indirect
github.com/spf13/cobra v1.0.0 // indirect
github.com/urfave/negroni v1.0.0 // indirect
gopkg.in/mattes/migrate.v1 v1.3.2 // indirect
)
184 changes: 184 additions & 0 deletions adapters/go.sum

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions cmd/go.mod
@@ -1,3 +1,22 @@
module github.com/prest/prest/cmd

go 1.13

require (
github.com/auth0/go-jwt-middleware v0.0.0-20200507191422-d30d7b9ece63 // indirect
github.com/clbanning/mxj v1.8.4 // indirect
github.com/fatih/color v1.9.0
github.com/gorilla/mux v1.7.4
github.com/jmoiron/sqlx v1.2.0 // indirect
github.com/lib/pq v1.8.0 // indirect
github.com/nuveo/log v0.0.0-20190430190217-44d02db6bdf8
github.com/prest/prest/adapters v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/config v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/controllers v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/helpers v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/middlewares v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/template v0.0.0-20200729234819-07cc1b6b492f // indirect
github.com/spf13/cobra v1.0.0
github.com/urfave/negroni v1.0.0
gopkg.in/mattes/migrate.v1 v1.3.2
)
190 changes: 190 additions & 0 deletions cmd/go.sum

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions config/go.mod
@@ -1,3 +1,10 @@
module github.com/prest/prest/config

go 1.13

require (
github.com/mitchellh/go-homedir v1.1.0
github.com/nuveo/log v0.0.0-20190430190217-44d02db6bdf8
github.com/prest/prest/adapters v0.0.0-20200729234819-07cc1b6b492f
github.com/spf13/viper v1.7.0
)
297 changes: 297 additions & 0 deletions config/go.sum

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions controllers/go.mod
@@ -1,3 +1,18 @@
module github.com/prest/prest/controllers

go 1.13

require (
github.com/auth0/go-jwt-middleware v0.0.0-20200507191422-d30d7b9ece63 // indirect
github.com/clbanning/mxj v1.8.4 // indirect
github.com/gorilla/mux v1.7.4
github.com/jmoiron/sqlx v1.2.0 // indirect
github.com/lib/pq v1.8.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/nuveo/log v0.0.0-20190430190217-44d02db6bdf8 // indirect
github.com/prest/prest/adapters v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/config v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/middlewares v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/template v0.0.0-20200729234819-07cc1b6b492f // indirect
github.com/spf13/viper v1.7.0 // indirect
)
324 changes: 324 additions & 0 deletions controllers/go.sum

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions middlewares/go.mod
@@ -1,3 +1,20 @@
module github.com/prest/prest/middlewares

go 1.13

require (
github.com/auth0/go-jwt-middleware v0.0.0-20200507191422-d30d7b9ece63
github.com/clbanning/mxj v1.8.4
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gorilla/mux v1.7.4
github.com/jmoiron/sqlx v1.2.0 // indirect
github.com/lib/pq v1.8.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/nuveo/log v0.0.0-20190430190217-44d02db6bdf8 // indirect
github.com/prest/prest/adapters v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/config v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/controllers v0.0.0-20200729234819-07cc1b6b492f
github.com/prest/prest/template v0.0.0-20200729234819-07cc1b6b492f // indirect
github.com/spf13/viper v1.7.0 // indirect
github.com/urfave/negroni v1.0.0
)
324 changes: 324 additions & 0 deletions middlewares/go.sum

Large diffs are not rendered by default.

0 comments on commit 94cf6e8

Please sign in to comment.