summaryrefslogtreecommitdiff
path: root/cli/base.py
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-06-15 13:44:16 +0200
committerYuval Adam <_@yuv.al>2025-06-15 13:44:16 +0200
commit2e0755cc68e14bda95abe9472754ae5f4e760a04 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /cli/base.py
parentcd812332b9000e58665585e9c3fadc30470a9a6d (diff)
Remove all old files before migration
Diffstat (limited to 'cli/base.py')
-rw-r--r--cli/base.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/cli/base.py b/cli/base.py
deleted file mode 100644
index e76da9d..0000000
--- a/cli/base.py
+++ /dev/null
@@ -1,15 +0,0 @@
-import click
-import ymlstash
-
-from pathlib import Path
-from .model import Name
-
-ROOT_PATH = Path(__file__).parents[1]
-NAMES_DIR = ROOT_PATH / "names"
-
-STASH = ymlstash.YmlStash(Name, NAMES_DIR, filter_none=True)
-
-
-@click.group
-def cli():
- pass