2022-03-23 15:12:29 +00:00
|
|
|
#![forbid(unsafe_code)]
|
|
|
|
|
2020-06-29 15:36:01 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
|
2022-01-13 17:36:41 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod mac;
|
|
|
|
|
2020-06-29 15:36:01 +00:00
|
|
|
mod cli;
|
2022-01-13 17:36:41 +00:00
|
|
|
mod cnf;
|
2020-06-29 15:36:01 +00:00
|
|
|
mod err;
|
2022-02-09 15:55:04 +00:00
|
|
|
mod net;
|
2020-06-29 15:36:01 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
cli::init(); // Initiate the command line
|
|
|
|
}
|