feat(imports): update imports
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
use std::collections::HashMap;
|
||||
use std::sync::LazyLock;
|
||||
|
||||
use crate::{
|
||||
controller::view_utils::{hamming_code_input_utils::*, input_utils::*},
|
||||
model::models::*,
|
||||
model::{models::*, Result},
|
||||
};
|
||||
|
||||
static SYNDROMES: LazyLock<HashMap<usize, (bool, bool, bool)>> = LazyLock::new(|| {
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
use gtk4 as gtk;
|
||||
|
||||
use crate::{model::models::*, model_utils::hamming_code_seven_four::*};
|
||||
use crate::{
|
||||
model::{models::*, Result},
|
||||
model_utils::hamming_code_seven_four::*,
|
||||
};
|
||||
use gtk::{prelude::*, *};
|
||||
|
||||
pub fn start_hamming_algorithm(input: &TextView, output: &TextView, mode: bool) {
|
||||
|
||||
Reference in New Issue
Block a user