mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-12-12 18:29:00 -05:00
7 lines
127 B
Rust
7 lines
127 B
Rust
|
|
use service::Services;
|
||
|
|
|
||
|
|
pub(crate) struct Command<'a> {
|
||
|
|
pub(crate) services: &'a Services,
|
||
|
|
pub(crate) body: &'a [&'a str],
|
||
|
|
}
|