cycles-quartz/cli/src/response/init.rs

13 lines
238 B
Rust
Raw Normal View History

use serde::Serialize;
use crate::response::Response;
#[derive(Clone, Debug, Serialize)]
pub struct InitResponse;
impl From<InitResponse> for Response {
fn from(response: InitResponse) -> Self {
Self::Init(response)
}
}