From b2382953dbd4b0a061091d89ec0ac2042f131f05 Mon Sep 17 00:00:00 2001 From: Kharec Date: Sun, 14 Dec 2025 11:14:01 +0100 Subject: [PATCH] feat: define run_configure() --- skywipe/commands.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 skywipe/commands.py diff --git a/skywipe/commands.py b/skywipe/commands.py new file mode 100644 index 0000000..91640aa --- /dev/null +++ b/skywipe/commands.py @@ -0,0 +1,8 @@ +"""Command implementations for Skywipe CLI.""" + +from skywipe.configuration import Configuration +import sys + +def run_configure(): + config = Configuration() + config.create()