Skip to content

Commit

Permalink
Apply formatting for alphabetical imports (#10)
Browse files Browse the repository at this point in the history
The chance of the created crate coming before "std"
is 18/26, 69%.  ( 's' is the 19th letter )
  • Loading branch information
stappersg authored Jul 13, 2023
1 parent 120ffa5 commit 90d8257
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use std::io;
use tui::backend::CrosstermBackend;
use tui::Terminal;
use {{crate_name}}::app::{App, AppResult};
use {{crate_name}}::event::{Event, EventHandler};
use {{crate_name}}::handler::handle_key_events;
use {{crate_name}}::tui::Tui;
use std::io;
use tui::backend::CrosstermBackend;
use tui::Terminal;

fn main() -> AppResult<()> {
// Create an application.
Expand Down

0 comments on commit 90d8257

Please sign in to comment.