aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2015-06-07 12:16:25 -0400
committerTeddy Wing2015-06-07 12:16:25 -0400
commit1e78d9ef6529cabfc443d1aae933c014e0153735 (patch)
tree37ecea743e6a3dc39036ecd0bc17006c2210e85c
parent1b4c3530aee05547fd6341ac206223dfaf1c2a7b (diff)
downloadNew-House-on-the-Block-1e78d9ef6529cabfc443d1aae933c014e0153735.tar.bz2
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.
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
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")