summaryrefslogtreecommitdiff
path: root/lsfg_vk/__init__.py
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-13 13:24:30 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-13 13:24:30 -0400
commit83a528be3a23bd43beb6a002c023a3673cad03ae (patch)
tree48864efe2d74271e2e3688cb31ecf7742f1a8844 /lsfg_vk/__init__.py
parent7866a9a77d2a0922883637576f6cdac122c56d42 (diff)
downloaddecky-lsfg-vk-83a528be3a23bd43beb6a002c023a3673cad03ae.tar.gz
decky-lsfg-vk-83a528be3a23bd43beb6a002c023a3673cad03ae.zip
update readme w manual install instructions
Diffstat (limited to 'lsfg_vk/__init__.py')
-rw-r--r--lsfg_vk/__init__.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/lsfg_vk/__init__.py b/lsfg_vk/__init__.py
new file mode 100644
index 0000000..8343853
--- /dev/null
+++ b/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__ = []