summaryrefslogtreecommitdiff
path: root/backend/src/customtypes.py
diff options
context:
space:
mode:
authorTrainDoctor <traindoctor@protonmail.com>2023-10-25 19:47:33 -0700
committerTrainDoctor <traindoctor@protonmail.com>2023-10-25 19:47:33 -0700
commita7669799bca3ff4089ab81fde924b2d2f787cf0f (patch)
tree0afcb03ec1c01efac90be81674df649d6cef186e /backend/src/customtypes.py
parentdacd2c19eb51ba525288fccb3ded653e45ca4409 (diff)
downloaddecky-loader-a7669799bca3ff4089ab81fde924b2d2f787cf0f.tar.gz
decky-loader-a7669799bca3ff4089ab81fde924b2d2f787cf0f.zip
Merge aa/type-cleanup-py (work by marios, aa, wolv)v2.10.6-pre1
Diffstat (limited to 'backend/src/customtypes.py')
-rw-r--r--backend/src/customtypes.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/backend/src/customtypes.py b/backend/src/customtypes.py
new file mode 100644
index 00000000..84ebc235
--- /dev/null
+++ b/backend/src/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