def define_description()

in modular_cli/service/help_client.py [0:0]


    def define_description(self):
        setup_command_help = \
            f'Usage: {ENTRY_POINT} setup [parameters]{os.linesep}' \
            f'Parameters:{os.linesep}     --username,   User name ' \
            f'associated with the Maestro user{os.linesep}     --password,  ' \
            f' Password associated with the Maestro user{os.linesep}  ' \
            f'   --api_path,   Address of the Maestro environment.'
        click.echo(setup_command_help)
        exit()