Skip to content

Commit

Permalink
ciを発火するために追加したコメントを削除
Browse files Browse the repository at this point in the history
  • Loading branch information
eraser5th committed Sep 10, 2024
1 parent 67ca071 commit e8d1c48
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/src/usecase/user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use crate::generate::entities::user;
use crate::{context::Context, models::user::User};

pub async fn get_user_by_id(ctx: &Context, id: &str) -> Result<Option<User>, ()> {
// hoge
let db = &ctx.db;

let Ok(user) = user::Entity::find_by_id(id).one(db).await else {
Expand Down

0 comments on commit e8d1c48

Please sign in to comment.