fix(agent): remove unused token debug handler (#12602)

This commit is contained in:
Cian Johnston
2024-03-15 09:43:36 +00:00
committed by GitHub
parent 8d7819f6d6
commit 653ddccd8e
3 changed files with 0 additions and 30 deletions

View File

@ -40,7 +40,6 @@ func (a *agent) apiHandler() http.Handler {
r.Get("/debug/magicsock", a.HandleHTTPDebugMagicsock)
r.Get("/debug/magicsock/debug-logging/{state}", a.HandleHTTPMagicsockDebugLoggingState)
r.Get("/debug/manifest", a.HandleHTTPDebugManifest)
r.Get("/debug/token", a.HandleHTTPDebugToken)
return r
}