certimate/pkg/logging/record.go
2025-07-23 21:37:46 +08:00

16 lines
210 B
Go

package logging
import (
"log/slog"
"time"
types "github.com/pocketbase/pocketbase/tools/types"
)
type Record struct {
Time time.Time
Level slog.Level
Message string
Data types.JSONMap[any]
}