mirror of
https://forgejo.ellis.link/continuwuation/continuwuity/
synced 2026-05-10 00:15:32 +00:00
bb5f2556c3
Signed-off-by: Jason Volk <jason@zemos.net>
12 lines
256 B
Rust
12 lines
256 B
Rust
use std::time::SystemTime;
|
|
|
|
use conduit_service::Services;
|
|
use ruma::EventId;
|
|
|
|
pub(crate) struct Command<'a> {
|
|
pub(crate) services: &'a Services,
|
|
pub(crate) body: &'a [&'a str],
|
|
pub(crate) timer: SystemTime,
|
|
pub(crate) reply_id: Option<&'a EventId>,
|
|
}
|