mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-26 12:15:22 +02:00
11 lines
258 B
Rust
11 lines
258 B
Rust
use std::time::SystemTime;
|
|
|
|
use conduwuit_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>,
|
|
}
|