tgchp 0.0.10

Telegram Chat History Parser.
Documentation
1
2
3
4
5
6
7
8
9
10
use sonic_rs::Result;

mod utils;

pub mod types;
pub use types::*;

pub fn from_str(s: &str) -> Result<ChatHistory> {
    sonic_rs::from_str(s)
}