1
0
Fork 0
mirror of https://github.com/archtechx/todo-system.git synced 2025-12-12 09:04:03 +00:00

make import syntax consistent

This commit is contained in:
Samuel Štancl 2023-11-27 02:23:04 +01:00
parent d08da09de1
commit 323758d069

View file

@ -2,10 +2,9 @@ use std::fs::canonicalize;
use std::path::PathBuf;
use clap::{Parser, ArgAction};
use scan::scan_readme_file;
use crate::entries::Entry;
use crate::render::render_entries;
use crate::scan::{Stats, scan_dir, scan_todo_file};
use crate::scan::{Stats, scan_dir, scan_todo_file, scan_readme_file};
pub mod scan;
pub mod render;