From 1e78d9ef6529cabfc443d1aae933c014e0153735 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 7 Jun 2015 12:16:25 -0400 Subject: main.go: Add redirect endpoint for post-transaction Hard-coded URL for the demo for the next step in the process after we complete the transaction. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index a75b8b4..ef95f5c 100644 --- a/main.go +++ b/main.go @@ -52,7 +52,7 @@ func main() { log.Println(err) } - http.Redirect(w, r, "", 302) + http.Redirect(w, r, "http://testsite.perfectburpee.com/new-house-on-the-block-page6/", 302) }) log.Println("Listening on port 3000") -- cgit v1.2.3