Files
podinfo/pkg/api/panic.go
Stefan Prodan 1af24bd3cd Run gofmt
2018-10-26 18:20:54 +03:00

10 lines
153 B
Go

package api
import (
"net/http"
)
func (s *Server) panicHandler(w http.ResponseWriter, r *http.Request) {
s.logger.Panic("Panic command received")
}