Sort imports with the help of rustfmt.

This commit is contained in:
Quin 2025-07-12 23:56:50 -06:00
parent 2991b10598
commit 17759c3210
6 changed files with 28 additions and 14 deletions

View file

@ -1,10 +1,12 @@
use std::{path::Path, sync::OnceLock};
use anyhow::Result;
use crate::{
config::Config,
helpers::read_doc_from_file,
render::{execute_lua, expand_template, process_markdown, process_syntax_highlighting},
};
use anyhow::Result;
use std::{path::Path, sync::OnceLock};
static CONFIG: OnceLock<Config> = OnceLock::new();