datarhei-dragonfork-core/restream/app/log.go

22 lines
258 B
Go
Raw Permalink Normal View History

2022-05-13 13:26:45 -04:00
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
}