Skip to content

Commit ae8941c

Browse files
committed
fmt: formatted code
1 parent ad6be87 commit ae8941c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

crates/alexandrie/src/frontend/account/github/callback.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use serde::{Deserialize, Serialize};
1616

1717
use crate::config::frontend::auth::github::GithubAuthOrganizationConfig;
1818
use crate::config::AppState;
19-
use crate::db::models::{NewAuthor, NewSalt, Author};
19+
use crate::db::models::{Author, NewAuthor, NewSalt};
2020
use crate::db::schema::{authors, salts};
2121
use crate::error::FrontendError;
2222
use crate::frontend::account::github::GITHUB_LOGIN_STATE_KEY;

crates/alexandrie/src/frontend/account/github/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ pub mod detach;
1919
use crate::config::AppState;
2020
use crate::error::FrontendError;
2121
use crate::utils;
22-
use crate::utils::response::common;
2322
use crate::utils::auth::frontend::Auth;
23+
use crate::utils::response::common;
2424

2525
const GITHUB_LOGIN_STATE_KEY: &str = "login.github";
2626

crates/alexandrie/src/frontend/account/gitlab/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ pub mod detach;
1919
use crate::config::AppState;
2020
use crate::error::FrontendError;
2121
use crate::utils;
22-
use crate::utils::response::common;
2322
use crate::utils::auth::frontend::Auth;
23+
use crate::utils::response::common;
2424

2525
const GITLAB_LOGIN_STATE_KEY: &str = "login.gitlab";
2626

crates/alexandrie/src/frontend/account/register.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ use crate::db::models::{NewAuthor, NewSalt};
2222
use crate::db::schema::*;
2323
use crate::error::FrontendError;
2424
use crate::utils;
25-
use crate::utils::response::common;
2625
use crate::utils::auth::frontend::Auth;
26+
use crate::utils::response::common;
2727

2828
const REGISTER_FLASH: &'static str = "register.flash";
2929

0 commit comments

Comments
 (0)