Skip to content

Commit

Permalink
Make sure the lint test passes
Browse files Browse the repository at this point in the history
  • Loading branch information
jhodapp committed Dec 2, 2023
1 parent 42e9894 commit 497a550
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion entity/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ pub mod organization;
pub mod user;

/// A type alias that represents any Entity's id field data type
pub type Id = i32;
pub type Id = i32;
2 changes: 1 addition & 1 deletion entity_api/src/organization.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use super::error::{EntityApiErrorCode, Error};
use entity::{Id, organization};
use entity::{organization, Id};
use organization::{ActiveModel, Entity, Model};
use sea_orm::{entity::prelude::*, ActiveValue, DatabaseConnection, TryIntoModel};
use serde_json::json;
Expand Down
2 changes: 1 addition & 1 deletion web/src/controller/organization_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::{AppState, Error};
use axum::extract::{Path, Query, State};
use axum::response::IntoResponse;
use axum::Json;
use entity::{Id, organization};
use entity::{organization, Id};
use entity_api::organization as OrganizationApi;
use serde_json::json;

Expand Down

0 comments on commit 497a550

Please sign in to comment.