AllMethodNames로 이름 변경
This commit is contained in:
@ -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))
|
out = make([]string, 0, len(hc.methods))
|
||||||
for name := range hc.methods {
|
for name := range hc.methods {
|
||||||
out = append(out, name)
|
out = append(out, name)
|
||||||
|
|||||||
Reference in New Issue
Block a user