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
182 B
Python
11 lines
182 B
Python
from enum import Enum
|
|
|
|
|
|
class ConfigShare(str, Enum):
|
|
AUTO = "auto"
|
|
DISABLED = "disabled"
|
|
MANUAL = "manual"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|