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

View File

@@ -0,0 +1,9 @@
from enum import Enum
class PolicyExecutionMode(str, Enum):
ANONYMOUS = "anonymous"
PUBLISHER = "publisher"
VIEWER = "viewer"
def __str__(self) -> str:
return str(self.value)