Add support dump API endpoint
This commit is contained in:
parent
d953ee69b4
commit
e85d02c530
4 changed files with 272 additions and 29 deletions
|
@ -89,6 +89,8 @@ func (h Handler) createRouter() *mux.Router {
|
|||
// Experimental endpoint
|
||||
apiRouter.Methods(http.MethodGet).Path("/api/overview").HandlerFunc(h.getOverview)
|
||||
|
||||
apiRouter.Methods(http.MethodGet).Path("/api/support-dump").HandlerFunc(h.getSupportDump)
|
||||
|
||||
apiRouter.Methods(http.MethodGet).Path("/api/entrypoints").HandlerFunc(h.getEntryPoints)
|
||||
apiRouter.Methods(http.MethodGet).Path("/api/entrypoints/{entryPointID}").HandlerFunc(h.getEntryPoint)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue