summaryrefslogtreecommitdiff
path: root/cli/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli/base.py')
-rw-r--r--cli/base.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/base.py b/cli/base.py
index 2098d8d..6250192 100644
--- a/cli/base.py
+++ b/cli/base.py
@@ -1,5 +1,10 @@
import click
+from pathlib import Path
+
+ROOT_PATH = Path(__file__).parents[1]
+NAMES_DIR = ROOT_PATH / "names"
+
@click.group
def cli():