Skip to content

Commit

Permalink
Uses a real go project to showcase vendor example so that glide does …
Browse files Browse the repository at this point in the history
…not complain
  • Loading branch information
vishal-biyani committed Jul 30, 2018
1 parent 9a7ffc2 commit fcaa9e0
Show file tree
Hide file tree
Showing 35 changed files with 6,526 additions and 7 deletions.
5 changes: 3 additions & 2 deletions examples/go/vendor-example/main.go
@@ -1,12 +1,13 @@
package main

import (
"go/vendordir/test"
"net/http"

"github.com/golang/example/stringutil"
)

// Handler is the entry point for this fission function
func Handler(w http.ResponseWriter, r *http.Request) {
msg := test.Test()
msg := stringutil.Reverse(stringutil.Reverse("Vendor Example Test"))
w.Write([]byte(msg))
}
202 changes: 202 additions & 0 deletions examples/go/vendor-example/vendor/github.com/golang/example/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fcaa9e0

Please sign in to comment.