summaryrefslogtreecommitdiff
path: root/rewrite.go
diff options
context:
space:
mode:
Diffstat (limited to 'rewrite.go')
-rw-r--r--rewrite.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/rewrite.go b/rewrite.go
index 7846e67..744db30 100644
--- a/rewrite.go
+++ b/rewrite.go
@@ -1,12 +1,9 @@
-// Copyright 2013 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
+// Register HTTP handlers that redirect old blog paths to their new locations.
package main
import "net/http"
-// Register HTTP handlers that redirect old blog paths to their new locations.
func init() {
for p := range urlMap {
dest := "/" + urlMap[p]