summaryrefslogtreecommitdiff
path: root/src/run.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2025-02-18 20:10:52 +0100
committermo8it <mo8it@proton.me>2025-02-18 20:10:52 +0100
commitd9872f2615a11ce94deb85c8f1c215d69abd7992 (patch)
treea525e7eaac10e75db45921f79578d3da33bf1a13 /src/run.rs
parent298be671b9108e490fcef6b8febace8659ec710a (diff)
Upgrade to edition 2024
Diffstat (limited to 'src/run.rs')
-rw-r--r--src/run.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/run.rs b/src/run.rs
index ac8b26a..6f4f099 100644
--- a/src/run.rs
+++ b/src/run.rs
@@ -1,7 +1,7 @@
use anyhow::Result;
use crossterm::{
- style::{Color, ResetColor, SetForegroundColor},
QueueableCommand,
+ style::{Color, ResetColor, SetForegroundColor},
};
use std::{
io::{self, Write},
@@ -10,7 +10,7 @@ use std::{
use crate::{
app_state::{AppState, ExercisesProgress},
- exercise::{solution_link_line, RunnableExercise, OUTPUT_CAPACITY},
+ exercise::{OUTPUT_CAPACITY, RunnableExercise, solution_link_line},
};
pub fn run(app_state: &mut AppState) -> Result<ExitCode> {