mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-17 12:56:41 +02:00
0e60f66604
Co-authored-by: Aiden Cline <aidenpcline@gmail.com>
11 lines
185 B
Python
11 lines
185 B
Python
from enum import Enum
|
|
|
|
|
|
class FileStatus(str, Enum):
|
|
ADDED = "added"
|
|
DELETED = "deleted"
|
|
MODIFIED = "modified"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|