mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-12 08:33:34 +03:00
10 lines
264 B
Python
10 lines
264 B
Python
from enum import IntEnum
|
|
|
|
class UserType(IntEnum):
|
|
HOST_USER = 1
|
|
EFFECTIVE_USER = 2
|
|
ROOT = 3
|
|
|
|
class PluginLoadType(IntEnum):
|
|
LEGACY_EVAL_IIFE = 0 # legacy, uses legacy serverAPI
|
|
ESMODULE_V1 = 1 # esmodule loading with modern @decky/backend apis |