From b20933e0bb5c1b9dc8231b26a33fb500e178d031 Mon Sep 17 00:00:00 2001 From: Gerasimos Maropoulos Date: Sun, 25 Feb 2018 12:14:49 +0200 Subject: [PATCH] upgrade go-bindata link to the most maintainable one Former-commit-id: 58d5253b3332acef480d36f0cf716f2ad6b1c09e --- _examples/file-server/embedding-files-into-app/main.go | 2 +- .../main.go | 2 +- .../embedded-single-page-application/main.go | 2 +- _examples/view/embedding-templates-into-app/main.go | 2 +- doc.go | 4 ++-- view/README.md | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/_examples/file-server/embedding-files-into-app/main.go b/_examples/file-server/embedding-files-into-app/main.go index 9f5125ae..f2ec4dab 100644 --- a/_examples/file-server/embedding-files-into-app/main.go +++ b/_examples/file-server/embedding-files-into-app/main.go @@ -5,7 +5,7 @@ import ( ) // Follow these steps first: -// $ go get -u github.com/jteeuwen/go-bindata/... +// $ go get -u github.com/shuLhan/go-bindata/... // $ go-bindata ./assets/... // $ go build // $ ./embedding-files-into-app diff --git a/_examples/file-server/single-page-application/embedded-single-page-application-with-other-routes/main.go b/_examples/file-server/single-page-application/embedded-single-page-application-with-other-routes/main.go index 57b3f352..14140f92 100644 --- a/_examples/file-server/single-page-application/embedded-single-page-application-with-other-routes/main.go +++ b/_examples/file-server/single-page-application/embedded-single-page-application-with-other-routes/main.go @@ -2,7 +2,7 @@ package main import "github.com/kataras/iris" -// $ go get -u github.com/jteeuwen/go-bindata/... +// $ go get -u github.com/shuLhan/go-bindata/... // $ go-bindata ./public/... // $ go build // $ ./embedded-single-page-application-with-other-routes diff --git a/_examples/file-server/single-page-application/embedded-single-page-application/main.go b/_examples/file-server/single-page-application/embedded-single-page-application/main.go index fbf9618c..2f709867 100644 --- a/_examples/file-server/single-page-application/embedded-single-page-application/main.go +++ b/_examples/file-server/single-page-application/embedded-single-page-application/main.go @@ -4,7 +4,7 @@ import ( "github.com/kataras/iris" ) -// $ go get -u github.com/jteeuwen/go-bindata/... +// $ go get -u github.com/shuLhan/go-bindata/... // $ go-bindata ./public/... // $ go build // $ ./embedded-single-page-application diff --git a/_examples/view/embedding-templates-into-app/main.go b/_examples/view/embedding-templates-into-app/main.go index 60e73940..69372f95 100644 --- a/_examples/view/embedding-templates-into-app/main.go +++ b/_examples/view/embedding-templates-into-app/main.go @@ -13,7 +13,7 @@ func main() { return "Greetings " + s + "!" }) - // $ go get -u github.com/jteeuwen/go-bindata/... + // $ go get -u github.com/shuLhan/go-bindata/... // $ go-bindata ./templates/... // $ go build // $ ./embedding-templates-into-app diff --git a/doc.go b/doc.go index 4ae3be38..b9eab9be 100644 --- a/doc.go +++ b/doc.go @@ -1121,7 +1121,7 @@ Example code: -View engine supports bundled(https://github.com/jteeuwen/go-bindata) template files too. +View engine supports bundled(https://github.com/shuLhan/go-bindata) template files too. go-bindata gives you two functions, asset and assetNames, these can be setted to each of the template engines using the `.Binary` func. @@ -1133,7 +1133,7 @@ Example code: func main() { app := iris.New() - // $ go get -u github.com/jteeuwen/go-bindata/... + // $ go get -u github.com/shuLhan/go-bindata/... // $ go-bindata ./templates/... // $ go build // $ ./embedding-templates-into-app diff --git a/view/README.md b/view/README.md index e054a77e..0ce6e74f 100644 --- a/view/README.md +++ b/view/README.md @@ -112,7 +112,7 @@ func hi(ctx iris.Context) { ## Embedded -View engine supports bundled(https://github.com/jteeuwen/go-bindata) template files too. +View engine supports bundled(https://github.com/shuLhan/go-bindata) template files too. `go-bindata` gives you two functions, `Assset` and `AssetNames`, these can be setted to each of the template engines using the `.Binary` function. @@ -125,7 +125,7 @@ import "github.com/kataras/iris" func main() { app := iris.New() - // $ go get -u github.com/jteeuwen/go-bindata/... + // $ go get -u github.com/shuLhan/go-bindata/... // $ go-bindata ./templates/... // $ go build // $ ./embedding-templates-into-app