2025-04-22 21:24:48 +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]
}