feat: add watch streak miner status

This commit is contained in:
2026-04-30 17:45:39 +02:00
parent e2eb34498f
commit e30769653a
13 changed files with 1068 additions and 58 deletions
+12 -2
View File
@@ -42,8 +42,18 @@ type IRCUpdate struct {
// MinerUpdate carries one miner log line into the TUI.
type MinerUpdate struct {
Login string
Line string
Login string
Line string
Status *MinerStatus
}
// MinerStatus carries the current active watch state for one streamer.
type MinerStatus struct {
Watching bool
Reason string
WatchedMinutes int
WatchStreakMinutes int
WatchStreak *int
}
type authStartedMsg struct {