Files
core/restream/app/log.go
Jan Stabenow 9c0b535199 Add v16.7.2
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
}