refactor: clean up import paths

This commit is contained in:
2025-03-15 15:07:26 -04:00
parent e70b8eca84
commit 41b3375749
6 changed files with 14 additions and 14 deletions

View File

@@ -1,12 +1,12 @@
use super::room::Room;
use matrix_sdk::{Client as MatrixClient, ruma::UserId};
use mlua::{Error, UserData};
use mlua::{Error, UserData, UserDataFields, UserDataMethods};
use std::sync::Arc;
pub struct Client(pub Arc<MatrixClient>);
impl UserData for Client {
fn add_fields<F: mlua::UserDataFields<Self>>(f: &mut F) {
fn add_fields<F: UserDataFields<Self>>(f: &mut F) {
f.add_field_method_get("rooms", |_, this| {
Ok(this.0.rooms().into_iter().map(Room).collect::<Vec<_>>())
});
@@ -15,7 +15,7 @@ impl UserData for Client {
});
}
fn add_methods<M: mlua::UserDataMethods<Self>>(m: &mut M) {
fn add_methods<M: UserDataMethods<Self>>(m: &mut M) {
m.add_async_method("create_dm", async |_, this, user_id: String| {
this.0
.create_dm(&UserId::parse(user_id).map_err(Error::external)?)