tele-macros 0.1.19

Proc-macros for tele bot ergonomics
Documentation
1
2
3
4
5
6
7
8
9
use tele_macros::BotCommands as DeriveBotCommands;

#[derive(DeriveBotCommands)]
enum InvalidCommandName {
    #[command(rename = "bad-name", description = "invalid command")]
    BadName,
}

fn main() {}