cycles-quartz/cli/src/response/init.rs
Shoaib Ahmed 2afbe50f76
feat(cli): setup skeleton for quartz tool (#105)
Co-authored-by: Thane Thomson <connect@thanethomson.com>
2024-07-23 11:35:38 +02:00

13 lines
238 B
Rust

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