Files
continuwuity/src/admin/command.rs
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
258 B
Rust
Raw Normal View History

use std::time::SystemTime;
2024-12-14 21:58:01 -05:00
use conduwuit_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],
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
}