finger/internal/server/healthcheck.go

14 lines
259 B
Go
Raw Permalink Normal View History

2023-09-20 01:26:38 -03:00
package server
import (
"net/http"
"git.maronato.dev/maronato/finger/internal/config"
)
func HealthCheckHandler(_ *config.Config) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
})
}