2022-05-13 19:26:45 +02:00

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
}