12 lines
235 B
Go
12 lines
235 B
Go
package storage
|
|
|
|
import "time"
|
|
|
|
type LogEntry struct {
|
|
Timestamp time.Time `ch:"timestamp"`
|
|
Level string `ch:"level"`
|
|
Service string `ch:"service"`
|
|
Agent string `ch:"agent"`
|
|
Message string `ch:"message"`
|
|
}
|