Files
go-slogd/slogd/jsonHandler.go
Jan Tytgat 08cde7c372 Move slogd out of pkg folder
Signed-off-by: Jan Tytgat <jan.tytgat@corelayer.eu>
2025-04-22 13:32:13 +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)
}