6 lines
127 B
Rust
6 lines
127 B
Rust
use service::Services;
|
|
|
|
pub(crate) struct Command<'a> {
|
|
pub(crate) services: &'a Services,
|
|
pub(crate) body: &'a [&'a str],
|
|
}
|