mirror of
https://github.com/golang/go
synced 2024-11-05 16:56:16 -07:00
951512dfed
Now that play.golang.org and sandbox[-flex].golang.org have been merged, proxy requests to the former. Change-Id: I7d18d0494fd54c2357dc53952fa458ceb1380aca Reviewed-on: https://go-review.googlesource.com/86253 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
14 lines
293 B
Go
14 lines
293 B
Go
// Copyright 2015 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 godoc
|
|
|
|
import "google.golang.org/appengine"
|
|
|
|
func init() {
|
|
onAppengine = !appengine.IsDevAppServer()
|
|
}
|