diff options
author | Soispha <soispha@vhack.eu> | 2023-06-18 16:43:49 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-06-18 16:43:49 +0200 |
commit | 6bc393444d415d50144b2c213812ce57eae1c01f (patch) | |
tree | 4f8785367b2396d07e878f3b0e80096accd015ae /src/main.rs | |
parent | Fix(cli): Remove project option (diff) | |
download | lpm-6bc393444d415d50144b2c213812ce57eae1c01f.tar.gz lpm-6bc393444d415d50144b2c213812ce57eae1c01f.zip |
Style(treewide): Format
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index b1d0563..b19e7bf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,9 +4,7 @@ use command_line_interface::{ Command::New, SubCommand::{Chapter, Section}, }; -use new::{ - chapter::generate_new_chapter, section::generate_new_section, -}; +use new::{chapter::generate_new_chapter, section::generate_new_section}; pub mod command_line_interface; pub mod data; |