diff options
author | Timo Kösters <timo@koesters.xyz> | 2023-07-02 16:06:54 +0200 |
---|---|---|
committer | Timo Kösters <timo@koesters.xyz> | 2023-07-02 22:12:06 +0200 |
commit | 9d49d599f3a1d5da535b71f2f8e4986c25b997e3 (patch) | |
tree | 2961f160f4943f4ee1cd655f26621bbe294ba75c /src/api/client_server/mod.rs | |
parent | 6a6f8e80f144140ed14c74b54ace5357c10ac66d (diff) | |
download | conduit-9d49d599f3a1d5da535b71f2f8e4986c25b997e3.zip |
feat: space hierarchies
Diffstat (limited to 'src/api/client_server/mod.rs')
-rw-r--r-- | src/api/client_server/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/api/client_server/mod.rs b/src/api/client_server/mod.rs index 2ab3a98..54c99aa 100644 --- a/src/api/client_server/mod.rs +++ b/src/api/client_server/mod.rs @@ -21,6 +21,7 @@ mod report; mod room; mod search; mod session; +mod space; mod state; mod sync; mod tag; @@ -55,6 +56,7 @@ pub use report::*; pub use room::*; pub use search::*; pub use session::*; +pub use space::*; pub use state::*; pub use sync::*; pub use tag::*; |