10 lines
168 B
Python
Generated
10 lines
168 B
Python
Generated
from enum import Enum
|
|
|
|
|
|
class LogsDirection(str, Enum):
|
|
BACKWARD = "backward"
|
|
FORWARD = "forward"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|