mirror of
https://github.com/golang/go
synced 2024-11-05 15:46:11 -07:00
e83bc56334
These were built inside Google but have been in production for years. Move them into the public tools repository so that they can be more easily maintained. This is step one to moving the entire golang.org deployment process out of Google's internal source repository. Change-Id: I72f875c5020b3f58f1c0cea1d19268e0f991833f Reviewed-on: https://go-review.googlesource.com/14842 Reviewed-by: Chris Broadfoot <cbro@golang.org>
17 lines
462 B
Go
17 lines
462 B
Go
// Copyright 2014 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.
|
|
|
|
// +build !appengine
|
|
|
|
package main
|
|
|
|
import "net/http"
|
|
|
|
// Register a redirect handler for /dl/ to the golang.org download page.
|
|
// This file will not be included when deploying godoc to golang.org.
|
|
|
|
func init() {
|
|
http.Handle("/dl/", http.RedirectHandler("https://golang.org/dl/", http.StatusFound))
|
|
}
|