~/hooky

hooky/data/src/all_data/discord_chromium.rs -rw-r--r-- 469 B
9c5255b2 — Arthur Melton get windows discord client 2 years ago
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::Sends;

impl Sends {
    #[cfg(all(feature = "discord-chromium", target_os = "windows"))]
    pub fn discord_chromium(&mut self) -> Option<()> {
        None
    }
    
    #[cfg(all(feature = "discord-chromium", target_os = "linux"))]
    pub fn discord_chromium(&mut self) -> Option<()> {
        None
    }
    
    #[cfg(all(feature = "discord-chromium", target_os = "macos"))]
    pub fn discord_chromium(&mut self) -> Option<()> {
        None
    }
}