diff options
author | Paweł Dybiec <pawel@dybiec.info> | 2022-12-26 20:26:37 +0000 |
---|---|---|
committer | Paweł Dybiec <pawel@dybiec.info> | 2022-12-26 22:34:24 +0000 |
commit | 73dbbabb69278f7784251737b28c4d2f19f93b58 (patch) | |
tree | ffe1a63ff8c7e5bd49298d75c0a3389fc68152f1 /src/mattermost/mod.rs | |
parent | Add dockerfile and build/publish step for it (diff) |
Add basic model for messages + parsing
Diffstat (limited to 'src/mattermost/mod.rs')
-rw-r--r-- | src/mattermost/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mattermost/mod.rs b/src/mattermost/mod.rs new file mode 100644 index 0000000..68c4465 --- /dev/null +++ b/src/mattermost/mod.rs @@ -0,0 +1,4 @@ +pub mod client; +pub mod model; +pub use client::{AuthData, Client, Handler}; +pub use model::WebsocketMessage; |