apply fmt 2024

This commit is contained in:
yggverse 2025-06-14 04:24:00 +03:00
parent 6b744f3746
commit c4c7ee70b8
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
use anyhow::{bail, Result};
use anyhow::{Result, bail};
pub struct Template {
pub index: String,

View file

@ -1,4 +1,4 @@
use anyhow::{bail, Result};
use anyhow::{Result, bail};
use std::{fs, path::PathBuf, str::FromStr};
pub struct Target(Vec<PathBuf>);