mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
94b805de0b
Signed-off-by: Jason Volk <jason@zemos.net>
10 lines
194 B
Rust
10 lines
194 B
Rust
use std::time::SystemTime;
|
|
|
|
use conduit_service::Services;
|
|
|
|
pub(crate) struct Command<'a> {
|
|
pub(crate) services: &'a Services,
|
|
pub(crate) body: &'a [&'a str],
|
|
pub(crate) timer: SystemTime,
|
|
}
|