Open dmitry-ryadnenko-izettle opened 2 years ago
Python's argparse
(https://docs.python.org/3/library/argparse.html) has description
and epilog
, I suggest to implement something similar in kotlinx-cli as well.
parser = argparse.ArgumentParser(
prog='ProgramName',
description='What the program does',
epilog='Text at the bottom of help'
)
It would be nice to be able to add a more detailed program description to the help text. Like this.