...

Package playground

import "golang.org/x/tools/playground"
Overview
Index
Subdirectories

Overview ▾

Package playground registers an HTTP handler at "/compile" that proxies requests to the golang.org playground service. This package may be used unaltered on App Engine Standard with Go 1.11+ runtime.

Index ▾

Package files

playground.go

func Proxy

func Proxy() http.Handler

Proxy returns a handler that can be registered on /compile to proxy requests to the Go playground.

This package already contains a func init that does:

func init() {
	http.Handle("/compile", Proxy())
}

Proxy may be useful for servers that use HTTP muxes other than the default mux.

Subdirectories

Name Synopsis
..
socket Package socket implements an WebSocket-based playground backend.