You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
505 B

  1. // Copyright 2012 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build appengine
  5. package playground
  6. import (
  7. "net/http"
  8. "appengine"
  9. "appengine/urlfetch"
  10. )
  11. func init() {
  12. onAppengine = !appengine.IsDevAppServer()
  13. }
  14. func client(r *http.Request) *http.Client {
  15. return urlfetch.Client(appengine.NewContext(r))
  16. }
  17. func report(r *http.Request, err error) {
  18. appengine.NewContext(r).Errorf("%v", err)
  19. }