mc-launcher 0.1.2

Helpful crate for run Minecraft
Documentation
1
2
3
4
5
6
7
8
9
10
// 200iq
#[cfg(target_os = "windows")]
pub(crate) fn choice_by_os<'a>(_: &'a str, on_windows: &'a str) -> &'a str {
  on_windows
}

#[cfg(not(target_os = "windows"))]
pub(crate) fn choice_by_os<'a>(on_linux: &'a str, _: &'a str) -> &'a str {
  on_linux
}