summaryrefslogtreecommitdiff
path: root/cli/base.py
diff options
context:
space:
mode:
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