Skip to content

Commit

Permalink
ran cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
george-cosma committed Aug 18, 2023
1 parent 2f86ce0 commit 9999491
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/interfaces.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub mod board_interface;
pub mod serial;
pub mod openocd;
pub mod jlink;
pub mod openocd;
pub mod serial;
2 changes: 1 addition & 1 deletion src/interfaces/jlink.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::errors::TockloaderError;
use super::board_interface::BoardInterface;
use crate::errors::TockloaderError;

pub struct JLinkInterface {}

Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/openocd.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::errors::TockloaderError;
use super::board_interface::BoardInterface;
use crate::errors::TockloaderError;

pub struct OpenOCDInterface {}

Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/serial.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::errors::TockloaderError;
use super::board_interface::BoardInterface;
use crate::errors::TockloaderError;

pub struct SerialInterface {}

Expand Down

0 comments on commit 9999491

Please sign in to comment.