Files
go-slogd/pkg/slogd/jsonHandler.go
Jan Tytgat 51964ac5e6 move slogd package from go-kit
Signed-off-by: Jan Tytgat <jan.tytgat@corelayer.eu>
2025-04-16 20:59:46 +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)
}