Added help message to all cli commands

This commit is contained in:
2021-04-11 16:36:59 +02:00
parent cce4b6b191
commit 93829027af
14 changed files with 105 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
import os
import textwrap
from collections import Callable
from cpl.configuration.configuration_abc import ConfigurationABC
@@ -55,6 +56,11 @@ class GenerateService(CommandABC):
self._config = configuration
self._env = self._config.environment
@property
def help_message(self) -> str:
return textwrap.dedent("""\
""")
@staticmethod
def _help(message: str):
"""