update comment location

This commit is contained in:
postscriptum 2025-07-04 15:03:38 +03:00
parent 01f9437bbe
commit 475e23c774

View file

@ -50,6 +50,7 @@ impl Format {
attachments: Option<Vec<(String, Option<String>)>>, attachments: Option<Vec<(String, Option<String>)>>,
) -> String { ) -> String {
match self { match self {
// implement separated templates @TODO
Self::Dir { Self::Dir {
pattern, pattern,
time_format, time_format,
@ -105,6 +106,6 @@ impl Format {
.map(|t| format!("\n\n{}", t.format(time_format))) .map(|t| format!("\n\n{}", t.format(time_format)))
.unwrap_or_default(), .unwrap_or_default(),
), ),
} // @TODO implement separated templates }
} }
} }