mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-11 08:03:26 +03:00
* fix incorrect permissions on plugin directories * chown plugin dirs too * fix the stupid * cleanup useless comments
9 lines
281 B
Python
9 lines
281 B
Python
from enum import IntEnum
|
|
|
|
class UserType(IntEnum):
|
|
HOST_USER = 1 # usually deck
|
|
EFFECTIVE_USER = 2 # usually root
|
|
|
|
class PluginLoadType(IntEnum):
|
|
LEGACY_EVAL_IIFE = 0 # legacy, uses legacy serverAPI
|
|
ESMODULE_V1 = 1 # esmodule loading with modern @decky/backend apis |