libfetch 0.1.0

Simple but reliable library for fetch tools
Documentation
pub mod platform;
pub mod utils;
pub mod shared;

// LINUX:
#[cfg(target_os = "linux")]
mod linux;

#[cfg(target_os = "linux")]
pub type Info = linux::Linux;

// ANDROID:
#[cfg(target_os = "android")]
mod android;

#[cfg(target_os = "android")]
pub type Info = android::Android;


// FREEBSD:
#[cfg(target_os = "freebsd")]
pub mod freebsd;

#[cfg(target_os="freebsd")]
pub type Info = freebsd::FreeBSD;