summaryrefslogtreecommitdiff
path: root/src/caelestia/subcommands/record.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/caelestia/subcommands/record.py')
-rw-r--r--src/caelestia/subcommands/record.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/caelestia/subcommands/record.py b/src/caelestia/subcommands/record.py
new file mode 100644
index 0000000..37f9a2b
--- /dev/null
+++ b/src/caelestia/subcommands/record.py
@@ -0,0 +1,11 @@
+from argparse import Namespace
+
+
+class Command:
+ args: Namespace
+
+ def __init__(self, args: Namespace) -> None:
+ self.args = args
+
+ def run(self) -> None:
+ pass