Source code for datalad_next.types.enums

"""Type ENUMs"""

from enum import Enum


[docs] class ArchiveType(Enum): """Enumeration of archive types Each one should have an associated ArchiveOperations handler. """ # TODO the values could also be handler classes ... tar = 'tar' zip = 'zip'