def ls()

in terranova/commands/binds.py [0:0]


def ls(path: str | None) -> None:
    """List resources."""
    # Find all resources manifests
    paths = resource_dirs(path)

    # Display resource paths
    for full_path, _ in paths:
        print(full_path)