certimate/pkg/logging/record.go
2025-06-17 16:28:51 +08:00

15 lines
193 B
Go

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