mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-03 18:40:21 +00:00
10 lines
153 B
Go
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")
|
|
}
|