1
0
Fork 0

Add support dump API endpoint

This commit is contained in:
Michael 2024-12-12 14:12:04 +01:00 committed by GitHub
parent d953ee69b4
commit e85d02c530
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 272 additions and 29 deletions

View file

@ -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)