mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 02:31:04 +01:00
examples: update go.mod (see previous commit)
This commit is contained in:
parent
e1f25eb098
commit
bf9f7617e2
|
@ -4,5 +4,5 @@ go 1.15
|
|||
|
||||
require (
|
||||
github.com/betacraft/yaag v1.0.1-0.20200719063524-47d781406108
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67
|
||||
)
|
||||
|
|
|
@ -4,6 +4,6 @@ go 1.15
|
|||
|
||||
require (
|
||||
github.com/joho/godotenv v1.3.0
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67
|
||||
go.mongodb.org/mongo-driver v1.3.4
|
||||
)
|
||||
|
|
|
@ -4,6 +4,6 @@ go 1.15
|
|||
|
||||
require (
|
||||
github.com/go-sql-driver/mysql v1.5.0
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67
|
||||
github.com/mailgun/groupcache/v2 v2.1.0
|
||||
)
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
)
|
||||
|
||||
// Follow these steps first:
|
||||
// $ go get -u github.com/go-bindata/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// # to save it to your go.mod file
|
||||
// $ go-bindata -prefix "assets" -fs ./assets/...
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
|
||||
// How to run:
|
||||
//
|
||||
// $ go get -u github.com/go-bindata/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// # to save it to your go.mod file
|
||||
// $ go-bindata -prefix "../embedding-files-into-app/assets/" -fs ../embedding-files-into-app/assets/...
|
||||
|
|
|
@ -7,7 +7,8 @@ import (
|
|||
)
|
||||
|
||||
// How to run:
|
||||
// $ go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// $ go-bindata -nomemcopy -fs -prefix "../http2push/assets" ../http2push/assets/...
|
||||
// $ go run .
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
)
|
||||
|
||||
// How to run:
|
||||
// $ go get -u github.com/go-bindata/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// # to save it to your go.mod file
|
||||
// $ go-bindata -nomemcopy -fs -prefix "../http2push/assets" ../http2push/assets/...
|
||||
|
|
|
@ -2,7 +2,7 @@ package main
|
|||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
// $ go get -u github.com/go-bindata/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// # to save it to your go.mod file
|
||||
// $ go-bindata -fs -prefix "public" ./public/...
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"github.com/kataras/iris/v12"
|
||||
)
|
||||
|
||||
// $ go get -u github.com/go-bindata/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// # to save it to your go.mod file
|
||||
// $ go-bindata -fs -prefix "public" ./public/...
|
||||
|
|
|
@ -4,5 +4,5 @@ go 1.15
|
|||
|
||||
require (
|
||||
github.com/Shopify/sarama v1.26.4
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67
|
||||
)
|
||||
|
|
|
@ -3,6 +3,6 @@ module github.com/kataras/iris/examples/logging/rollbar
|
|||
go 1.15
|
||||
|
||||
require (
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67
|
||||
github.com/rollbar/rollbar-go v1.2.0
|
||||
)
|
||||
|
|
|
@ -2,4 +2,4 @@ module app
|
|||
|
||||
go 1.15
|
||||
|
||||
require github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e
|
||||
require github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67
|
||||
|
|
|
@ -2,4 +2,4 @@ module github.com/kataras/iris/_examples/mvc/vuejs-todo-mvc/src
|
|||
|
||||
go 1.15
|
||||
|
||||
require github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e
|
||||
require github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67
|
||||
|
|
|
@ -2,6 +2,6 @@ module github.com/kataras/iris/_examples/routing/subdomains/redirect/multi-insta
|
|||
|
||||
go 1.15
|
||||
|
||||
require github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e
|
||||
require github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67
|
||||
|
||||
replace github.com/kataras/iris/v12 => ../../../../../
|
|
@ -2,5 +2,5 @@ module app
|
|||
|
||||
go 1.15
|
||||
|
||||
require github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e
|
||||
require github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import "github.com/kataras/iris/v12"
|
|||
func main() {
|
||||
app := iris.New()
|
||||
|
||||
// $ go get -u github.com/go-bindata/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// # to save it to your go.mod file
|
||||
// $ go-bindata -fs -prefix "templates" ./templates/...
|
||||
|
|
|
@ -2,7 +2,7 @@ package main
|
|||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
// $ go get -u github.com/go-bindata/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// # to save it to your go.mod file
|
||||
//
|
||||
|
|
|
@ -2,7 +2,7 @@ package main
|
|||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
// $ go get -u github.com/go-bindata/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// # to save it to your go.mod file
|
||||
//
|
||||
|
|
|
@ -10,7 +10,7 @@ import (
|
|||
"github.com/kataras/iris/v12"
|
||||
)
|
||||
|
||||
// $ go get -u github.com/go-bindata/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// # to save it to your go.mod file
|
||||
//
|
||||
|
|
|
@ -2,7 +2,7 @@ package main
|
|||
|
||||
import "github.com/kataras/iris/v12"
|
||||
|
||||
// $ go get -u github.com/go-bindata/go-bindata
|
||||
// $ go get -u github.com/go-bindata/go-bindata/...
|
||||
// # OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
// # to save it to your go.mod file
|
||||
//
|
||||
|
|
|
@ -4,5 +4,5 @@ go 1.15
|
|||
|
||||
require (
|
||||
github.com/iris-contrib/middleware/jwt v0.0.0-20200710202437-92b01b85baaf
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e // indirect
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67 // indirect
|
||||
)
|
||||
|
|
|
@ -4,5 +4,5 @@ go 1.15
|
|||
|
||||
require (
|
||||
github.com/googollee/go-socket.io v1.4.3-0.20191109153049-7451e2f8c2e0
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200826045448-a46f71804a8e
|
||||
github.com/kataras/iris/v12 v12.1.9-0.20200903123630-7e6d453dad67
|
||||
)
|
||||
|
|
|
@ -120,7 +120,7 @@ View engine supports bundled(https://github.com/go-bindata/go-bindata) template
|
|||
|
||||
|
||||
```sh
|
||||
$ go get -u github.com/go-bindata/go-bindata
|
||||
$ go get -u github.com/go-bindata/go-bindata/...
|
||||
# OR: go get -u github.com/go-bindata/go-bindata/v3/go-bindata
|
||||
# to save it to your go.mod file
|
||||
$ go-bindata -fs -prefix "templates" ./templates/...
|
||||
|
|
Loading…
Reference in New Issue
Block a user