aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--template/go/base-web-goji.go17
-rw-r--r--template/go/snip-web-goji-get.go3
-rw-r--r--template/go/snip-web-goji-post.go3
3 files changed, 23 insertions, 0 deletions
diff --git a/template/go/base-web-goji.go b/template/go/base-web-goji.go
new file mode 100644
index 0000000..9ed55f1
--- /dev/null
+++ b/template/go/base-web-goji.go
@@ -0,0 +1,17 @@
+package main
+
+import (
+ "fmt"
+ "net/http"
+
+ "github.com/zenazn/goji"
+ "github.com/zenazn/goji/web"
+)
+
+func main() {
+ goji.Get("/", func(c web.C, w http.ResponseWriter, r *http.Request) {
+ "{{_cursor_}}"
+ })
+ goji.Serve()
+}
+{{_filter_:web-goji}}
diff --git a/template/go/snip-web-goji-get.go b/template/go/snip-web-goji-get.go
new file mode 100644
index 0000000..62ea2de
--- /dev/null
+++ b/template/go/snip-web-goji-get.go
@@ -0,0 +1,3 @@
+goji.Get("/", func(c web.C, w http.ResponseWriter, r *http.Request) {
+ {{_cursor_}}
+})
diff --git a/template/go/snip-web-goji-post.go b/template/go/snip-web-goji-post.go
new file mode 100644
index 0000000..2060a62
--- /dev/null
+++ b/template/go/snip-web-goji-post.go
@@ -0,0 +1,3 @@
+goji.Post("/", func(c web.C, w http.ResponseWriter, r *http.Request) {
+ {{_cursor_}}
+})