24 lines
497 B
Python
24 lines
497 B
Python
from enum import Enum
|
|
|
|
|
|
class FileStatus(str, Enum):
|
|
OK = "ok"
|
|
SPARSE = "sparse"
|
|
MISSING = "missing"
|
|
TEMPLATE_RESIDUE = "template-residue"
|
|
PLACEHOLDER_HEAVY = "placeholder-heavy"
|
|
|
|
|
|
class ArchitectureLayer(str, Enum):
|
|
BUSINESS = "business"
|
|
APPLICATION = "application"
|
|
DATA = "data"
|
|
TECHNOLOGY = "technology"
|
|
|
|
|
|
class ModuleLayer(str, Enum):
|
|
DOMAIN = "domain"
|
|
APPLICATION = "application"
|
|
INFRASTRUCTURE = "infrastructure"
|
|
INTERFACES = "interfaces"
|