gohttpserver/internal/handlers/panic.go
Jeffrey Paul dd778174a7
Some checks failed
continuous-integration/drone/push Build is failing
sneak/integrate-di (#17)
moving this to use uber/fx di framework instead of the ad hoc di setup before

Co-authored-by: sneak <sneak@sneak.berlin>
Reviewed-on: #17
2023-01-29 03:06:05 +00: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")
}
}