Files
continuwuity/src/admin/command.rs
T
2024-08-08 18:09:21 +00:00

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,
}