mirror of
https://github.com/golang/go
synced 2024-11-20 05:54:43 -07:00
1338347b9c
R=dsymonds CC=golang-dev https://golang.org/cl/5495060
17 lines
436 B
Go
17 lines
436 B
Go
// Copyright 2011 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.
|
|
|
|
package build
|
|
|
|
import "appengine"
|
|
|
|
// Delete this init function before deploying to production.
|
|
func init() {
|
|
if !appengine.IsDevAppServer() {
|
|
panic("please read misc/dashboard/app/build/key.go")
|
|
}
|
|
}
|
|
|
|
const secretKey = "" // Important! Put a secret here before deploying!
|