Ordering some files

This commit is contained in:
2023-06-18 13:53:45 +02:00
parent 0c3a3126f8
commit fd4affdb17
14 changed files with 70 additions and 38 deletions
+5 -5
View File
@@ -2,9 +2,9 @@ use serde::{Deserialize, Serialize};
use crate::{
current_weather_output_model::CurrentWeatherOutputModel,
data_format::DataFormat,
speed_unit::{speed_to_unit_string, SpeedUnit},
temp_unit::{temp_to_unit_string, TempUnit},
formats::data_format::DataFormat,
formats::speed_unit::{speed_to_unit_string, SpeedUnit},
formats::temp_unit::{temp_to_unit_string, TempUnit},
};
#[derive(Serialize, Deserialize, Debug)]
@@ -185,8 +185,8 @@ impl CurrentWeatherOutput {
#[cfg(test)]
mod tests {
use super::*;
use crate::speed_unit::SpeedUnit;
use crate::temp_unit::TempUnit;
use crate::formats::speed_unit::SpeedUnit;
use crate::formats::temp_unit::TempUnit;
#[test]
fn clean_all_data() {