Files
Gists/internal/web/handlers/health/metrics.go
2025-01-20 01:57:39 +01:00

10 lines
292 B
Go

package health
import "github.com/thomiceli/opengist/internal/web/context"
// Metrics is a dummy handler to satisfy the /metrics endpoint (for Prometheus, Openmetrics, etc.)
// until we have a proper metrics endpoint
func Metrics(ctx *context.Context) error {
return ctx.String(200, "")
}