telepathy 0.0.1

High-level Telegram Bot API library in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use file::File;
use std::path::PathBuf;
use url::Url;

#[derive(Debug)]
pub enum StickerFile {
    FileId(String),
    Url(Url),
    InputFile(File),
    LocalFile(PathBuf),
}