upgrade, and refactor imports
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-08-21 04:23:25 +02:00
parent 25e4348c1c
commit 58bae1772e
7 changed files with 146 additions and 135 deletions
+7 -10
View File
@@ -4,41 +4,38 @@ mod current_weather_extractor;
mod current_weather_output;
mod current_weather_output_model;
mod current_weather_print_params;
mod ifconfig {
pub mod ifconfig_api;
}
mod formats {
pub mod data_format;
pub mod speed_unit;
pub mod temp_unit;
}
mod ip_api {
pub mod ip_api_api;
pub mod ip_location;
pub mod ip_location_cache;
}
mod open_meteo {
pub mod current_weather;
pub mod open_meteo_api;
}
use billboard::{Alignment, Billboard};
use formats::data_format::DataFormat;
use ip_api::ip_location_cache::{get_from_cache, save_to_cache};
use std::process::exit;
use structopt::StructOpt;
use cli::Arguments;
use coords::Coordinates;
use current_weather_extractor::CurrentWeatherExtractor;
use current_weather_print_params::CurrentWeatherPrintParams;
use formats::data_format::DataFormat;
use ifconfig::ifconfig_api::extract_public_ip;
use ip_api::ip_api_api::extract_coords_and_city;
use ip_api::{
ip_api_api::extract_coords_and_city,
ip_location_cache::{get_from_cache, save_to_cache},
};
use open_meteo::open_meteo_api::request_current_weather;
use std::process::exit;
use structopt::StructOpt;
fn main() {
let opts = Arguments::from_args();