feat: space hierarchies

This commit is contained in:
Timo Kösters 2023-07-02 16:06:54 +02:00
commit 9d49d599f3
No known key found for this signature in database
GPG key ID: 0B25E636FBA7E4CB
11 changed files with 503 additions and 17 deletions
src/service/rooms

View file

@ -9,6 +9,7 @@ pub mod outlier;
pub mod pdu_metadata;
pub mod search;
pub mod short;
pub mod spaces;
pub mod state;
pub mod state_accessor;
pub mod state_cache;
@ -56,5 +57,6 @@ pub struct Service {
pub state_compressor: state_compressor::Service,
pub timeline: timeline::Service,
pub threads: threads::Service,
pub spaces: spaces::Service,
pub user: user::Service,
}