summaryrefslogtreecommitdiffhomepage
path: root/packages/sdk/python/src/opencode_ai/models/config_share.py
blob: 5979e51e99fe41ea7efedad1ad6ab6694f9cfd59 (plain)
1
2
3
4
5
6
7
8
9
10
from enum import Enum


class ConfigShare(str, Enum):
    AUTO = "auto"
    DISABLED = "disabled"
    MANUAL = "manual"

    def __str__(self) -> str:
        return str(self.value)