summaryrefslogtreecommitdiff
path: root/cli/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli/base.py')
-rw-r--r--cli/base.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/base.py b/cli/base.py
index 6250192..e76da9d 100644
--- a/cli/base.py
+++ b/cli/base.py
@@ -1,10 +1,14 @@
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():