// Copyright 2009 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 rpc /* Some HTML presented at http://machine:port/debug/rpc Lists services, their methods, and some statistics, still rudimentary. */ import ( "fmt" "html/template" "net/http" "slices" "strings" ) const debugText = ` Services {{range .}}
Service {{.Name}}
{{range .Method}} {{end}}
MethodCalls
{{.Name}}({{.Type.ArgType}}, {{.Type.ReplyType}}) error {{.Type.NumCalls}}
{{end}}