gorss/handlerHealth.go
2025-04-12 12:53:08 +02:00

10 lines
138 B
Go

package main
import (
"net/http"
)
func HandlerHealth(w http.ResponseWriter, r *http.Request) {
respondWithJSON(w, 200, struct{}{})
}