Skip to content

Commit

Permalink
Use laurier macros
Browse files Browse the repository at this point in the history
  • Loading branch information
lusingander committed Dec 12, 2024
1 parent 26322eb commit d80528d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
mod cargo;
mod macros;
mod tui;
mod util;

Expand Down
3 changes: 2 additions & 1 deletion src/tui.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use console::truncate_str;
use laurier::{key_code, key_code_char};
use ratatui::{
backend::Backend,
crossterm::event::{self, Event, KeyCode},
Expand All @@ -10,7 +11,7 @@ use ratatui::{
};
use tui_input::{backend::crossterm::EventHandler, Input};

use crate::{key_code, key_code_char, util::digits, Action, Target, TargetKind};
use crate::{util::digits, Action, Target, TargetKind};

pub struct Tui {
targets: Vec<Target>,
Expand Down

0 comments on commit d80528d

Please sign in to comment.