Add commands for viewing and editing user profiles

This commit is contained in:
2025-01-30 02:27:13 +00:00
parent fc09d267e5
commit 417621d422
3 changed files with 298 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ pub mod user_repository;
#[async_trait::async_trait]
pub trait RepositoryProvider {
type BackendError: std::error::Error;
type BackendError: std::error::Error + Send + Sync;
type Repository<'a>: Repository<BackendError = <Self as RepositoryProvider>::BackendError> + Send + Sync
where