diff options
| author | WerWolv <werwolv98@gmail.com> | 2023-09-26 14:54:52 +0200 |
|---|---|---|
| committer | marios8543 <marios8543@gmail.com> | 2023-10-17 17:08:23 +0300 |
| commit | 59379710142c12e18a5fa1ece81c2ca41bb665a2 (patch) | |
| tree | 2f6724d500109de480d061563886cd0042a3641f /backend/src/customtypes.py | |
| parent | a351c02ac166efc60778948c6e93829ea93393f4 (diff) | |
| download | decky-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.py | 6 |
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 |
