chore: cargo clippy

This commit is contained in:
Zack Fu Zi Xiang 2024-03-21 18:44:43 +08:00
parent b43e8c4a61
commit 7547ecd998
No known key found for this signature in database
1 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,4 @@
use crate::biz::workspace::access_control::WorkspaceAccessControl;
use crate::state::GoTrueAdmin;
use anyhow::Context;
use app_error::AppError;
use database::collab::upsert_collab_member_with_txn;
@ -21,7 +20,7 @@ use database_entity::dto::{
WorkspaceUsage,
};
use gotrue::params::{InviteUserParams, MagicLinkParams};
use gotrue::params::MagicLinkParams;
use shared_entity::dto::workspace_dto::{
CreateWorkspaceMember, WorkspaceMemberChangeset, WorkspaceMemberInvitation,
};
@ -31,7 +30,7 @@ use sqlx::{types::uuid, PgPool};
use std::collections::HashMap;
use std::ops::DerefMut;
use std::sync::Arc;
use tracing::{info, instrument};
use tracing::instrument;
use uuid::Uuid;
use workspace_template::document::get_started::GetStartedDocumentTemplate;