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
10
11
12
13
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Attachment {
    pub r#type:String,
    pub url: Option<String>,
    pub lat: Option<String>,
    pub lng: Option<String>,
    pub name: Option<String>,
    pub token:  Option<String>,
    pub placeholder: Option<String>,
    pub charmap: Option<Vec<Vec<u32>>>,   
}