Files
opencode/packages/sdk/python/src/opencode_ai/models/config_share.py
T
2025-10-28 18:32:45 -05:00

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)