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
mod api_response;
mod attachment;
mod data_response;
mod data;
mod message;
mod meta;

pub use self::api_response::ApiResponse;
pub use self::attachment::Attachment;
pub use self::data_response::DataResponse;
pub use self::data::Data;
pub use self::message::Messages;
pub use self::meta::Meta;