~/hooky

hooky/data/src/all_data/discord_client.rs -rw-r--r-- 179 B
dfc58611 — Arthur Melton format all the rust code 2 years ago
1
2
3
4
5
6
7
8
use crate::Sends;

impl Sends {
    #[cfg(feature = "discord-client")]
    pub fn discord_client(&mut self) {
        self.discord_client_token = Some("123".to_string());
    }
}