mirror of
https://github.com/charmbracelet/crush.git
synced 2025-08-02 05:20:46 +03: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
|
|
}
|