mirror of
https://github.com/datarhei/core.git
synced 2025-09-27 04:16:25 +08:00
22 lines
258 B
Go
22 lines
258 B
Go
package app
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type LogEntry struct {
|
|
Timestamp time.Time
|
|
Data string
|
|
}
|
|
|
|
type LogHistoryEntry struct {
|
|
CreatedAt time.Time
|
|
Prelude []string
|
|
Log []LogEntry
|
|
}
|
|
|
|
type Log struct {
|
|
LogHistoryEntry
|
|
History []LogHistoryEntry
|
|
}
|