24 lines
487 B
Rust
24 lines
487 B
Rust
use std::path::Path;
|
|
|
|
use serde::Serialize;
|
|
|
|
use crate::config::Config;
|
|
use crate::error::CustomError;
|
|
use crate::intermediate::IClock;
|
|
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(tag = "type")]
|
|
#[serde(rename = "clock")]
|
|
pub(crate) struct RenderClock {}
|
|
|
|
impl RenderClock {
|
|
pub(crate) fn new(
|
|
_config: &Config,
|
|
_output_directory: &Path,
|
|
_output_file: &Path,
|
|
_original: &IClock,
|
|
) -> Result<RenderClock, CustomError> {
|
|
Ok(RenderClock {})
|
|
}
|
|
}
|