8 lines
295 B
Rust
8 lines
295 B
Rust
|
|
//! Re-exports from `crate::chat::commands`.
|
||
|
|
//!
|
||
|
|
//! The command dispatch infrastructure has moved to `crate::chat::commands` so
|
||
|
|
//! it can be shared by all transports. This module re-exports everything for
|
||
|
|
//! backwards compatibility with in-tree references.
|
||
|
|
|
||
|
|
pub use crate::chat::commands::*;
|