~/hooky

hooky/data/src/all_data/discord_client.rs -rw-r--r-- 180 B
1ce8d56c — Arthur Melton separate data crate 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());
    }
}