blob: 0dcee31bac6f05bf5e8d079472780f6652408cb3 [file] [log] [blame]
// Copyright 2013 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 goplay
import (
"io"
"net/http"
"golang.org/x/tools/godoc/static"
)
func init() {
http.HandleFunc("/playground.js", httpsOnlyHandler{play})
}
func play(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-type", "text/javascript")
io.WriteString(w, static.Files["playground.js"])
}