10 lines
177 B
Python
10 lines
177 B
Python
from enum import Enum
|
|
|
|
class PreviewKind(str, Enum):
|
|
CODE = "code"
|
|
HTTP = "http"
|
|
IDENTITY = "identity"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|