Files
.github
.vscode
docker
internal
app
applicant
certificate
deployer
domain
notify
pkg
core
logging
handler.go
level.go
record.go
sdk3rd
utils
repository
rest
scheduler
statistics
workflow
migrations
ui
.dockerignore
.editorconfig
.gitignore
.goreleaser.yml
CHANGELOG.md
CONTRIBUTING.md
CONTRIBUTING_EN.md
Dockerfile
LICENSE.md
Makefile
README.md
README_EN.md
go.mod
go.sum
main.go
nixpacks.toml
certimate/internal/pkg/logging/record.go
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]
}