Skip to main content

mur_chat/
lib.rs

1//! MUR Commander Chat SDK — platform-agnostic chat interface.
2//!
3//! Supports Slack (primary), with Telegram and Discord planned.
4//! Includes SSE→chat adapter, notifications, and interactive commands.
5
6pub mod adapter;
7pub mod autocomplete;
8pub mod command;
9pub mod discord;
10pub mod notification;
11pub mod platform;
12pub mod slack;
13pub mod telegram;