2024-08-03 05:34:38 +00:00
|
|
|
use std::time::SystemTime;
|
|
|
|
|
|
|
|
|
|
use conduit_service::Services;
|
2024-08-28 04:09:46 +00:00
|
|
|
use ruma::EventId;
|
2024-07-27 00:11:41 +00:00
|
|
|
|
|
|
|
|
pub(crate) struct Command<'a> {
|
|
|
|
|
pub(crate) services: &'a Services,
|
|
|
|
|
pub(crate) body: &'a [&'a str],
|
2024-08-03 05:34:38 +00:00
|
|
|
pub(crate) timer: SystemTime,
|
2024-08-28 04:09:46 +00:00
|
|
|
pub(crate) reply_id: Option<&'a EventId>,
|
2024-07-27 00:11:41 +00:00
|
|
|
}
|