Uses a real go project to showcase vendor example so glide works (#828)

This commit is contained in:
Vishal
2018-08-01 23:55:54 +08:00
committed by Ta-Ching Chen
parent 6123873d2a
commit 4356378301
36 changed files with 6530 additions and 7 deletions
+3 -2
View File
@@ -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))
}