[docs]deflist_projects(registry:str,url:str,force_remote:bool=False)->List[str]:""" List all projects in the registry. Args: registry: Path to the registry. url: URL to the Gobbler REST API. Only used for remote access. force_remote: Whether to force remote access via the API, even if ``registry`` is on the same filesystem as the caller. Returns: List of strings containing the project names. """listed=list_registry_directories(".",registry,url,force_remote)# Remove the ..logs directory.output=[]forxinlisted:ifnotx.startswith(".."):output.append(x)returnoutput