~/hooky

hooky/data/src/all_data/discord_firefox.rs -rw-r--r-- 462 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-firefox", target_os = "windows"))]
    pub fn discord_firfox(&mut self) -> Option<()> {
        None
    }
    
    #[cfg(all(feature = "discord-firefox", target_os = "linux"))]
    pub fn discord_firefox(&mut self) -> Option<()> {
        None
    }
    
    #[cfg(all(feature = "discord-firefox", target_os = "macos"))]
    pub fn discord_firefox(&mut self) -> Option<()> {
        None
    }
}