diff options
author | Timo Kösters <timo@koesters.xyz> | 2023-06-26 12:38:51 +0200 |
---|---|---|
committer | Timo Kösters <timo@koesters.xyz> | 2023-06-26 12:38:51 +0200 |
commit | 72eb1972c18307d77c9dbfaddc2cb92bd9f38efa (patch) | |
tree | 89139a9d0621da0e09c160bc37705aa490f7f874 /src/api/client_server/mod.rs | |
parent | db6def8800e12a778dd0c1117c7a0623deb76984 (diff) | |
download | conduit-72eb1972c18307d77c9dbfaddc2cb92bd9f38efa.zip |
Add relations endpoints, edits and threads work now
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 4a77f23..2ab3a98 100644 --- a/src/api/client_server/mod.rs +++ b/src/api/client_server/mod.rs @@ -16,6 +16,7 @@ mod profile; mod push; mod read_marker; mod redact; +mod relations; mod report; mod room; mod search; @@ -49,6 +50,7 @@ pub use profile::*; pub use push::*; pub use read_marker::*; pub use redact::*; +pub use relations::*; pub use report::*; pub use room::*; pub use search::*; |