Set up folder structure for the command handlers.

This commit is contained in:
Tom Alexander
2023-10-18 19:54:18 -04:00
parent 179b07388a
commit 8b5930f277
5 changed files with 4 additions and 0 deletions

View File

0
src/command/build/mod.rs Normal file
View File

0
src/command/init/mod.rs Normal file
View File

3
src/command/mod.rs Normal file
View File

@@ -0,0 +1,3 @@
pub(crate) mod add_post;
pub(crate) mod build;
pub(crate) mod init;