diff options
author | 2025-06-11 02:54:27 +0100 | |
---|---|---|
committer | 2025-06-11 02:54:27 +0100 | |
commit | 838e99fd1577c52121e148efabcd624114a8b9ad (patch) | |
tree | daaa4e0d00e53a851bf967f668cbc121018d4a5f /src/lib.rs | |
parent | 8bd186fe47eda25b36f945f926ce19093d16fe39 (diff) | |
download | macaw-web-838e99fd1577c52121e148efabcd624114a8b9ad.tar.gz macaw-web-838e99fd1577c52121e148efabcd624114a8b9ad.tar.bz2 macaw-web-838e99fd1577c52121e148efabcd624114a8b9ad.zip |
fmt: everything
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -1,17 +1,16 @@ pub use views::App; -mod state_store; -mod icon; -mod user; mod chat; -mod open_chats; -mod components; -mod views; -mod files; mod client; -mod roster; +mod components; mod contact; +mod files; +mod icon; mod message; mod message_subscriptions; +mod open_chats; +mod roster; +mod state_store; +mod user; mod user_presences; - +mod views; |