def list_subfolders()

in solutions_builder/cli/cli_utils.py [0:0]


def list_subfolders(path):
  modules = get_immediate_subdirectories(path)
  for module_name in modules:
    print_highlight(f"- {module_name}")
  print()