aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/README.md b/README.md
index 19e2b32..9b4d7e3 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,6 @@ type Item struct { }
func (item Item) Get(values url.Values) (int, interface{}) {
items := []string{"item1", "item2"}
data := map[string][]string{"items": items}
-
return 200, data
}
bgstack15