Files
go-kit/slogd/jsonHandler.go
2025-04-29 22:26:20 +02:00

11 lines
181 B
Go

package slogd
import (
"io"
"log/slog"
)
func RegisterJSONHandler(w io.Writer, activate bool) {
RegisterSink(HandlerJSON, slog.NewJSONHandler(w, HandlerOptions()), activate)
}