This commit is contained in:
Christoph J. Scherr 2023-09-05 00:06:05 +02:00
parent ff033d0ee5
commit 6159ca6d46
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,6 @@
// enable clippy's extra lints, the pedantic version
#![warn(clippy::pedantic)]
use std::path::PathBuf;
//// IMPORTS ///////////////////////////////////////////////////////////////////////////////////////
use pt::{logger, networking::monitoring::uptime};
@ -27,6 +26,8 @@ use clap::Parser;
pub mod args;
use args::*;
use std::path::PathBuf;
//// CONSTANTS /////////////////////////////////////////////////////////////////////////////////////
#[allow(dead_code)]
const EXIT_SUCCESS: i32 = 0;