SideCar/
Library.rs

1#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
2#![allow(non_snake_case, non_upper_case_globals)]
3
4#[allow(dead_code)]
5/// Main executable function.
6fn main() {
7	if let Err(Error) = Download::Fn() {
8		error!("The application encountered a fatal error: {}", Error);
9
10		std::process::exit(1);
11	}
12}
13
14pub mod Download;
15
16use log::error;