From 0ce20a55341223d4b47ce11b8c1b542c1dfa8848 Mon Sep 17 00:00:00 2001 From: Leo Drachenfeuer Date: Mon, 5 Dec 2022 16:11:08 +0100 Subject: [PATCH] prepare modules for the next days --- src/cli/commands/day003.rs | 2 +- src/cli/commands/day004.rs | 4 ++++ src/cli/commands/day005.rs | 4 ++++ src/cli/commands/day006.rs | 4 ++++ src/cli/commands/day007.rs | 4 ++++ src/cli/commands/day008.rs | 4 ++++ src/cli/commands/day009.rs | 4 ++++ src/cli/commands/day010.rs | 4 ++++ src/cli/commands/day011.rs | 4 ++++ src/cli/commands/day012.rs | 4 ++++ src/cli/commands/day013.rs | 4 ++++ src/cli/commands/day014.rs | 4 ++++ src/cli/commands/day015.rs | 4 ++++ src/cli/commands/day016.rs | 4 ++++ src/cli/commands/day017.rs | 4 ++++ src/cli/commands/day018.rs | 4 ++++ src/cli/commands/day019.rs | 4 ++++ src/cli/commands/day020.rs | 4 ++++ src/cli/commands/day021.rs | 4 ++++ src/cli/commands/day022.rs | 4 ++++ src/cli/commands/day023.rs | 4 ++++ src/cli/commands/day024.rs | 4 ++++ src/cli/commands/day025.rs | 4 ++++ 23 files changed, 89 insertions(+), 1 deletion(-) create mode 100644 src/cli/commands/day004.rs create mode 100644 src/cli/commands/day005.rs create mode 100644 src/cli/commands/day006.rs create mode 100644 src/cli/commands/day007.rs create mode 100644 src/cli/commands/day008.rs create mode 100644 src/cli/commands/day009.rs create mode 100644 src/cli/commands/day010.rs create mode 100644 src/cli/commands/day011.rs create mode 100644 src/cli/commands/day012.rs create mode 100644 src/cli/commands/day013.rs create mode 100644 src/cli/commands/day014.rs create mode 100644 src/cli/commands/day015.rs create mode 100644 src/cli/commands/day016.rs create mode 100644 src/cli/commands/day017.rs create mode 100644 src/cli/commands/day018.rs create mode 100644 src/cli/commands/day019.rs create mode 100644 src/cli/commands/day020.rs create mode 100644 src/cli/commands/day021.rs create mode 100644 src/cli/commands/day022.rs create mode 100644 src/cli/commands/day023.rs create mode 100644 src/cli/commands/day024.rs create mode 100644 src/cli/commands/day025.rs diff --git a/src/cli/commands/day003.rs b/src/cli/commands/day003.rs index 92f4bcd..52a6d16 100644 --- a/src/cli/commands/day003.rs +++ b/src/cli/commands/day003.rs @@ -1,4 +1,4 @@ use crate::cli::PathBuf; pub fn subcmd_day003(file: &Option, alt: &bool) { -} \ No newline at end of file +} diff --git a/src/cli/commands/day004.rs b/src/cli/commands/day004.rs new file mode 100644 index 0000000..d315e18 --- /dev/null +++ b/src/cli/commands/day004.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day004(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day005.rs b/src/cli/commands/day005.rs new file mode 100644 index 0000000..27aaa99 --- /dev/null +++ b/src/cli/commands/day005.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day005(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day006.rs b/src/cli/commands/day006.rs new file mode 100644 index 0000000..60b4163 --- /dev/null +++ b/src/cli/commands/day006.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day006(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day007.rs b/src/cli/commands/day007.rs new file mode 100644 index 0000000..00e7338 --- /dev/null +++ b/src/cli/commands/day007.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day007(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day008.rs b/src/cli/commands/day008.rs new file mode 100644 index 0000000..d194afa --- /dev/null +++ b/src/cli/commands/day008.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day008(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day009.rs b/src/cli/commands/day009.rs new file mode 100644 index 0000000..7b822ec --- /dev/null +++ b/src/cli/commands/day009.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day009(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day010.rs b/src/cli/commands/day010.rs new file mode 100644 index 0000000..edf4f2c --- /dev/null +++ b/src/cli/commands/day010.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day010(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day011.rs b/src/cli/commands/day011.rs new file mode 100644 index 0000000..9f7ee31 --- /dev/null +++ b/src/cli/commands/day011.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day011(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day012.rs b/src/cli/commands/day012.rs new file mode 100644 index 0000000..26d678a --- /dev/null +++ b/src/cli/commands/day012.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day012(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day013.rs b/src/cli/commands/day013.rs new file mode 100644 index 0000000..73e4a1b --- /dev/null +++ b/src/cli/commands/day013.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day013(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day014.rs b/src/cli/commands/day014.rs new file mode 100644 index 0000000..8e3dd9d --- /dev/null +++ b/src/cli/commands/day014.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day014(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day015.rs b/src/cli/commands/day015.rs new file mode 100644 index 0000000..1962c36 --- /dev/null +++ b/src/cli/commands/day015.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day015(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day016.rs b/src/cli/commands/day016.rs new file mode 100644 index 0000000..6f4f1f8 --- /dev/null +++ b/src/cli/commands/day016.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day016(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day017.rs b/src/cli/commands/day017.rs new file mode 100644 index 0000000..813727e --- /dev/null +++ b/src/cli/commands/day017.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day017(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day018.rs b/src/cli/commands/day018.rs new file mode 100644 index 0000000..fed6ae0 --- /dev/null +++ b/src/cli/commands/day018.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day018(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day019.rs b/src/cli/commands/day019.rs new file mode 100644 index 0000000..17b29f2 --- /dev/null +++ b/src/cli/commands/day019.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day019(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day020.rs b/src/cli/commands/day020.rs new file mode 100644 index 0000000..8ac7f38 --- /dev/null +++ b/src/cli/commands/day020.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day020(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day021.rs b/src/cli/commands/day021.rs new file mode 100644 index 0000000..b7f84bc --- /dev/null +++ b/src/cli/commands/day021.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day021(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day022.rs b/src/cli/commands/day022.rs new file mode 100644 index 0000000..64ceeef --- /dev/null +++ b/src/cli/commands/day022.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day022(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day023.rs b/src/cli/commands/day023.rs new file mode 100644 index 0000000..6f1ecaf --- /dev/null +++ b/src/cli/commands/day023.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day023(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day024.rs b/src/cli/commands/day024.rs new file mode 100644 index 0000000..a2e4dcd --- /dev/null +++ b/src/cli/commands/day024.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day024(file: &Option, alt: &bool) { + +} diff --git a/src/cli/commands/day025.rs b/src/cli/commands/day025.rs new file mode 100644 index 0000000..8abc2df --- /dev/null +++ b/src/cli/commands/day025.rs @@ -0,0 +1,4 @@ +use crate::cli::PathBuf; +pub fn subcmd_day025(file: &Option, alt: &bool) { + +}