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>
10 lines
159 B
Python
10 lines
159 B
Python
from enum import Enum
|
|
|
|
|
|
class LayoutConfig(str, Enum):
|
|
AUTO = "auto"
|
|
STRETCH = "stretch"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|