Fix errors preventing compilation
This commit is contained in:
parent
fb7e504f2c
commit
6fdce9db1e
5 changed files with 156 additions and 30 deletions
|
|
@ -84,6 +84,6 @@ impl<M: Msg> Tree<M> {
|
|||
|
||||
#[async_trait]
|
||||
pub trait MsgStore<M: Msg> {
|
||||
async fn path(&self, room: &str, id: M::Id) -> Path<M::Id>;
|
||||
async fn thread(&self, room: &str, root: M::Id) -> Tree<M>;
|
||||
async fn path(&self, room: &str, id: &M::Id) -> Path<M::Id>;
|
||||
async fn thread(&self, room: &str, root: &M::Id) -> Tree<M>;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue