diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-13 01:12:22 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-13 01:12:22 -0400 |
| commit | 7866a9a77d2a0922883637576f6cdac122c56d42 (patch) | |
| tree | 890dc77a3afdcc12ca4c30ce51450e96793984b8 /py_modules/lsfg_vk/__init__.py | |
| parent | f72004267674c139d042809df55a27a3ea1ea5d9 (diff) | |
| download | decky-lsfg-vk-7866a9a77d2a0922883637576f6cdac122c56d42.tar.gz decky-lsfg-vk-7866a9a77d2a0922883637576f6cdac122c56d42.zip | |
python refactor
Diffstat (limited to 'py_modules/lsfg_vk/__init__.py')
| -rw-r--r-- | py_modules/lsfg_vk/__init__.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/py_modules/lsfg_vk/__init__.py b/py_modules/lsfg_vk/__init__.py new file mode 100644 index 0000000..8343853 --- /dev/null +++ b/py_modules/lsfg_vk/__init__.py @@ -0,0 +1,14 @@ +""" +lsfg-vk plugin package for Decky Loader. + +This package provides services for installing and managing the lsfg-vk +Vulkan layer for Lossless Scaling frame generation. +""" + +# Import will be available once plugin.py exists +try: + from .plugin import Plugin + __all__ = ['Plugin'] +except ImportError: + # During development, plugin may not exist yet + __all__ = [] |
