mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 05:43:55 +00:00
20 lines
272 B
Go
20 lines
272 B
Go
package logging
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Message is the event payload for a log message
|
|
type Message struct {
|
|
ID string
|
|
Time time.Time
|
|
Level string
|
|
Message string `json:"msg"`
|
|
Attributes []Attr
|
|
}
|
|
|
|
type Attr struct {
|
|
Key string
|
|
Value string
|
|
}
|