Skip to content

Commit

Permalink
fix fmt error
Browse files Browse the repository at this point in the history
  • Loading branch information
morphy2k committed Aug 25, 2023
1 parent ceddd47 commit c1e8a96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/services/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ pub mod action;
pub mod client;
pub mod error;
pub mod extract;
pub mod health;
pub mod model;
pub mod oauth;
pub mod routes;
Expand All @@ -10,7 +11,6 @@ pub mod session;
pub mod sso;
pub mod token;
pub mod user;
pub mod health;

pub use routes::routes;

Expand Down
2 changes: 1 addition & 1 deletion src/services/routes.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::AppState;

use super::{action, client, oauth, service, session, sso, token, user, health};
use super::{action, client, health, oauth, service, session, sso, token, user};

use axum::Router;

Expand Down

0 comments on commit c1e8a96

Please sign in to comment.