| 48 | handler handler |
| 49 | } |
| 50 | type restServer struct { |
| 51 | router *Router |
| 52 | listener net.Listener |
| 53 | server *http.Server |
| 54 | postMap map[string]Action //post method map |
| 55 | getMap map[string]Action //get method map |
| 56 | } |
| 57 | |
| 58 | const ( |
| 59 | GET_CONN_COUNT = "/api/v1/node/connectioncount" |
nothing calls this directly
no outgoing calls
no test coverage detected