mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-19 01:41:55 +08:00
15 lines
196 B
Go
15 lines
196 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]
|
|
}
|