This commit is contained in:
Ruben Fiszel
2024-01-16 23:46:36 +01:00
parent 640ebcb146
commit f782e009cd
1696 changed files with 160145 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from enum import Enum
class PreviewKind(str, Enum):
CODE = "code"
HTTP = "http"
IDENTITY = "identity"
def __str__(self) -> str:
return str(self.value)