Rename arg_handler to args

This commit is contained in:
timvisee
2023-12-29 18:55:24 +01:00
parent 7461fb4831
commit 46fd802c6b
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
mod arg_handler;
mod args;
mod color;
mod image_manager;
mod painter;
@@ -7,7 +7,7 @@ mod rect;
use std::io::Error;
use arg_handler::ArgHandler;
use args::ArgHandler;
use image_manager::ImageManager;
use pix::canvas::Canvas;
use pix::client::Client;