Skip to content

Commit

Permalink
Refactor Justfile and TodoList struct
Browse files Browse the repository at this point in the history
  • Loading branch information
Almaju committed Dec 19, 2023
1 parent a6f0fd7 commit d5758fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ deps:

lint:
cargo clippy
python3 sort_derive.py
2 changes: 1 addition & 1 deletion domain/src/todolist.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#[derive(Debug, Default)]
#[derive(Default, Debug)]
pub struct TodoList {
pub tasks: Vec<Task>,
}
Expand Down

0 comments on commit d5758fe

Please sign in to comment.