groupme-rust-stats 1.0.4

A rust command line tool which downloads the complete history of a groupme chat group. It also runs a few analytics on the data and displays as a plain text file.
1
2
3
4
5
6
7
8
9
use super::message::Messages;

pub struct Data {
    pub total_count: u32,
    pub start_timestamp: u32,
    pub next_start_timestamp: u32,
    pub last_message_id:String,
    pub messages: Vec<Messages>,
}