From 3e46293efc867da30da0cb00915815410674a207 Mon Sep 17 00:00:00 2001 From: mountain Date: Sun, 21 Jul 2024 23:09:35 +0900 Subject: [PATCH] =?UTF-8?q?AllMethodNames=EB=A1=9C=20=EC=9D=B4=EB=A6=84=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.go b/server.go index 675b7d8..e4336a3 100644 --- a/server.go +++ b/server.go @@ -826,7 +826,7 @@ func (hc *HttpApiBroker) AddHandler(receiver HttpApiHandler) { } } -func (hc *HttpApiBroker) AllMethods() (out []string) { +func (hc *HttpApiBroker) AllMethodNames() (out []string) { out = make([]string, 0, len(hc.methods)) for name := range hc.methods { out = append(out, name)