From 7866a9a77d2a0922883637576f6cdac122c56d42 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Sun, 13 Jul 2025 01:12:22 -0400 Subject: python refactor --- py_modules/lsfg_vk/__init__.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 py_modules/lsfg_vk/__init__.py (limited to 'py_modules/lsfg_vk/__init__.py') 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__ = [] -- cgit v1.2.3