Add cache file param

This commit is contained in:
Antonio J. Delgado 2025-03-04 11:17:45 +02:00
parent ad8a4ed906
commit 7e415314d8

View file

@ -129,6 +129,12 @@ class __project_codename_camel__:
default=f"{LOG_FOLDER}/__project_code_name__.log",
help="File to store all debug messages."
)
@click.option(
'--cache-file',
'-f',
default=f"{CACHE_FOLDER}/__project_code_name__.json",
help='Cache file to store data from each run',
)
@click.option(
'--max-cache-age',
'-a',