1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2021 - 2021, Rupansh Sekar and the Kilogramme (TBD) contributors
// SPDX-License-Identifier: MPL-2.0
use reusable_fmt::fmt_reuse;

fmt_reuse! {
    // This has 2 spaces at the end of every line to force line breaks
    INFO_TEMPLATE = r#"{header}\
**ID:** {id}  
**First Name:** {fname}  
**Last Name:** {lname}  
**Username:** @{username}"#;

    USER_ID_FMT = "**UserID:** `{}`";
    CHAT_ID_FMT = "**CHATID:** `{}`";
    P_UID_FMT = "***Personal UID:** `{}`";

    PONG_FMT = r#"***PONG!***\
`Ping: {}ms`"#;
}

pub const BOT_HEADER: &str = "**Bot Info**";
pub const USER_HEADER: &str = "**User Info**";

pub const PONG: &str = "***PONG!***";