mirror of
https://github.com/usual2970/certimate.git
synced 2025-07-26 20:08:34 +00:00
.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
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]
|
|
}
|