fix: imports

This commit is contained in:
Kevaundray Wedderburn
2025-05-24 21:23:50 +01:00
parent 2c6a4f5313
commit d106f8d65c
2 changed files with 5 additions and 3 deletions

View File

@@ -1,6 +1,4 @@
use indexmap::IndexMap;
use serde::{Deserialize, Serialize};
use std::{path::Path, time::Duration};
use std::path::Path;
use thiserror::Error;
mod input;

View File

@@ -1,3 +1,7 @@
use indexmap::IndexMap;
use serde::{Deserialize, Serialize};
use std::time::Duration;
/// ProgramExecutionReport produces information about a particular program
/// execution.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]