stephane-segning / no-drive

2 stars 0 forks source link

Modify project trait #11

Closed Christiantyemele closed 3 months ago

Christiantyemele commented 3 months ago

modify project traits to handle operations asynchronously for better performance and scalability e.g

  async fn register_user(&self, user_data: UserData) -> Result<()> {
        todo!()
    }
instead of this

  fn register_user(&self, user_data: UserData) -> Result<()> {
    todo!()
}
```