summaryrefslogtreecommitdiff
path: root/backend/src/customtypes.py
diff options
context:
space:
mode:
authorWerWolv <werwolv98@gmail.com>2023-09-26 14:54:52 +0200
committermarios8543 <marios8543@gmail.com>2023-10-17 17:08:23 +0300
commit59379710142c12e18a5fa1ece81c2ca41bb665a2 (patch)
tree2f6724d500109de480d061563886cd0042a3641f /backend/src/customtypes.py
parenta351c02ac166efc60778948c6e93829ea93393f4 (diff)
downloaddecky-loader-59379710142c12e18a5fa1ece81c2ca41bb665a2.tar.gz
decky-loader-59379710142c12e18a5fa1ece81c2ca41bb665a2.zip
Moved backend entirely into the backend folder
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