diff options
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 |
