summaryrefslogtreecommitdiff
path: root/backend/customtypes.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend/customtypes.py')
-rw-r--r--backend/customtypes.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/backend/customtypes.py b/backend/customtypes.py
new file mode 100644
index 00000000..84ebc235
--- /dev/null
+++ b/backend/customtypes.py
@@ -0,0 +1,6 @@
+from enum import Enum
+
+class UserType(Enum):
+ HOST_USER = 1
+ EFFECTIVE_USER = 2
+ ROOT = 3 \ No newline at end of file