from enum import Enum from typing import NewType FileTag = NewType("FileTag", str) [docs] class FileType(str, Enum): FILE = "file" DIRECTORY = "dir"
Aleph Network Client