ignore: python sdk (#2779)
Co-authored-by: Aiden Cline <aidenpcline@gmail.com>
This commit is contained in:
10
packages/sdk/python/src/opencode_ai/models/config_share.py
Normal file
10
packages/sdk/python/src/opencode_ai/models/config_share.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class ConfigShare(str, Enum):
|
||||
AUTO = "auto"
|
||||
DISABLED = "disabled"
|
||||
MANUAL = "manual"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
Reference in New Issue
Block a user