24 lines
539 B
Rust
24 lines
539 B
Rust
use std::path::Path;
|
|
|
|
use serde::Serialize;
|
|
|
|
use crate::config::Config;
|
|
use crate::error::CustomError;
|
|
use crate::intermediate::IExportSnippet;
|
|
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(tag = "type")]
|
|
#[serde(rename = "export_snippet")]
|
|
pub(crate) struct RenderExportSnippet {}
|
|
|
|
impl RenderExportSnippet {
|
|
pub(crate) fn new(
|
|
config: &Config,
|
|
output_directory: &Path,
|
|
output_file: &Path,
|
|
comment: &IExportSnippet,
|
|
) -> Result<RenderExportSnippet, CustomError> {
|
|
Ok(RenderExportSnippet {})
|
|
}
|
|
}
|