Skip to content

Commit

Permalink
Updated to newest dev commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gammelalf committed Feb 18, 2025
1 parent 0b98da8 commit ed22f37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example-forum-server/src/handler/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use axum::http::StatusCode;
use axum::response::{IntoResponse, Response};
use axum::routing::{delete, get, post, put};
use axum::Router;
use rorm::{Database, FieldAccess};
use rorm::Database;
use tower_sessions::{session, Session};

use crate::models::user::User;
Expand Down
2 changes: 1 addition & 1 deletion example-forum-server/src/handler/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use axum::Json;
use futures_util::TryStreamExt;
use rorm::fields::types::MaxStr;
use rorm::prelude::ForeignModelByField;
use rorm::{and, Database, FieldAccess};
use rorm::{and, Database};
use serde::{Deserialize, Serialize};
use time::OffsetDateTime;
use uuid::Uuid;
Expand Down
2 changes: 1 addition & 1 deletion example-forum-server/src/handler/user.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use axum::extract::{Path, State};
use axum::Json;
use rorm::fields::types::MaxStr;
use rorm::{and, Database, FieldAccess};
use rorm::{and, Database};
use serde::{Deserialize, Serialize};
use tower_sessions::Session;

Expand Down

0 comments on commit ed22f37

Please sign in to comment.