2025-06-11 10:42:38 +02:00

19 lines
344 B
Python

import argparse
import logging
def cli():
parser = argparse.ArgumentParser(
description="$REPO_DESCRIPTION",
formatter_class=argparse.RawTextHelpFormatter
)
parser.add_argument(
"--debug",
action="store_true",
help="Sets the logging level to debug."
)
args = parser.parse_args()