diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-13 13:24:30 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-13 13:24:30 -0400 |
| commit | 83a528be3a23bd43beb6a002c023a3673cad03ae (patch) | |
| tree | 48864efe2d74271e2e3688cb31ecf7742f1a8844 /main_new.py | |
| parent | 7866a9a77d2a0922883637576f6cdac122c56d42 (diff) | |
| download | decky-lsfg-vk-83a528be3a23bd43beb6a002c023a3673cad03ae.tar.gz decky-lsfg-vk-83a528be3a23bd43beb6a002c023a3673cad03ae.zip | |
update readme w manual install instructions
Diffstat (limited to 'main_new.py')
| -rw-r--r-- | main_new.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/main_new.py b/main_new.py new file mode 100644 index 0000000..18b93f9 --- /dev/null +++ b/main_new.py @@ -0,0 +1,13 @@ +""" +Main entry point for the lsfg-vk Decky Loader plugin. + +This file imports and exposes the Plugin class from the lsfg_vk package. +The actual implementation has been refactored into separate service modules +for better maintainability and testability. +""" + +# Import the refactored Plugin class +from lsfg_vk import Plugin + +# Re-export Plugin at module level for Decky Loader compatibility +__all__ = ['Plugin'] |
