feat(playback): Add UUID to summary view

This commit is contained in:
Castor Gemini 2025-08-22 03:00:47 -05:00 committed by Jeff Carr
parent bffc301568
commit ba1e58f797
1 changed files with 2 additions and 1 deletions

View File

@ -26,10 +26,11 @@ func doPlayback() {
} }
// Print the formatted one-line summary. // Print the formatted one-line summary.
fmt.Printf("Topic: %-25s | Entries: %-4d | Started: %s\n", fmt.Printf("Topic: %-25s | Entries: %-4d | Started: %s | UUID: %s\n",
chat.GetChatName(), chat.GetChatName(),
entryCount, entryCount,
formattedTime, formattedTime,
chat.GetUuid(),
) )
} }
fmt.Println("-------------------------------------------------") fmt.Println("-------------------------------------------------")