remove debug leftover

This commit is contained in:
Niko Storni 2022-02-10 00:57:13 +01:00
parent 4d8e7739d7
commit 2f7d67794f

View file

@ -48,9 +48,6 @@ func (s *Server) Start(address string) error {
// Install nice.Recovery, passing the handler to call after recovery
router.Use(nice.Recovery(s.recoveryHandler))
router.GET("/blob", s.getBlob)
router.GET("/", func(c *gin.Context) {
panic("woops")
})
router.HEAD("/blob", s.hasBlob)
srv := &http.Server{
Addr: address,