gohttpserver/internal/handlers/handlepanic.go
sneak 75442d261d
Some checks failed
continuous-integration/drone/push Build is failing
this is nowhere near working yet
2022-11-28 04:59:20 +01:00

15 lines
295 B
Go

package handlers
import (
"net/http"
)
// CHANGEME you probably want to remove this,
// this is just a handler/route that throws a panic to test
// sentry events.
func (s *Handlers) HandlePanic() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
panic("y tho")
}
}