Rename to natter.

This commit is contained in:
Tom Alexander
2023-12-21 19:28:31 -05:00
parent d641c8d638
commit 35dff5cdaf
8 changed files with 27 additions and 27 deletions

View File

@@ -1,3 +1,3 @@
mod runner;
pub(crate) use runner::init_writer_folder;
pub(crate) use runner::init_natter_folder;

View File

@@ -2,7 +2,7 @@ use crate::cli::parameters::InitArgs;
use crate::config::Config;
use crate::error::CustomError;
pub(crate) async fn init_writer_folder(args: InitArgs) -> Result<(), CustomError> {
pub(crate) async fn init_natter_folder(args: InitArgs) -> Result<(), CustomError> {
if args.path.exists() && !args.path.is_dir() {
return Err("The supplied path exists but is not a directory. Aborting.".into());
}