mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 21:49:52 +00:00
15 lines
193 B
Go
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]
|
|
}
|